forked from Anri/cal8tor
add ics dependencie
This commit is contained in:
parent
6b6bafe6e0
commit
1b12cb369f
2 changed files with 8 additions and 0 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
@ -61,6 +61,7 @@ name = "cal8tor"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
|
"ics",
|
||||||
"regex",
|
"regex",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"scraper",
|
"scraper",
|
||||||
|
@ -447,6 +448,12 @@ dependencies = [
|
||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ics"
|
||||||
|
version = "0.5.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b891481ef6353e3b97118d4650469e379a39e4373a66908c12f99763182826b1"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "idna"
|
name = "idna"
|
||||||
version = "0.2.3"
|
version = "0.2.3"
|
||||||
|
|
|
@ -11,3 +11,4 @@ tokio = { version = "1", features = ["full"] }
|
||||||
scraper = "0.13.0"
|
scraper = "0.13.0"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
|
ics = "0.5"
|
||||||
|
|
Loading…
Reference in a new issue