Add ical dependency

This commit is contained in:
Alexander Krotov
2020-11-23 01:17:45 +03:00
parent 241a9c5990
commit 0d2aaec742
2 changed files with 11 additions and 0 deletions

10
Cargo.lock generated
View File

@@ -1066,6 +1066,7 @@ dependencies = [
"futures",
"futures-lite",
"hex",
"ical",
"image",
"indexmap",
"itertools 0.9.0",
@@ -1839,6 +1840,15 @@ dependencies = [
"quick-error",
]
[[package]]
name = "ical"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a9f7215ad0d77e69644570dee000c7678a47ba7441062c1b5f918adde0d73cf"
dependencies = [
"thiserror",
]
[[package]]
name = "ident_case"
version = "1.0.1"

View File

@@ -62,6 +62,7 @@ async-std-resolver = "0.19.5"
async-tar = "0.3.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
vcard = "0.4.6"
ical = { version = "0.7.0", default-features = false, features = ["vcard"] }
pretty_env_logger = { version = "0.4.0", optional = true }
log = {version = "0.4.8", optional = true }