mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 08:12:24 +00:00
27 lines
651 B
TOML
27 lines
651 B
TOML
[package]
|
|
name = "rustical_caldav"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-web = "4.4"
|
|
actix-web-httpauth = "0.8"
|
|
anyhow = { version = "1.0", features = ["backtrace"] }
|
|
base64 = "0.21"
|
|
derive_more = "0.99"
|
|
futures-util = "0.3"
|
|
quick-xml = { version = "0.31", features = [
|
|
"serde",
|
|
"serde-types",
|
|
"serialize",
|
|
] }
|
|
roxmltree = "0.19"
|
|
rustical_store = { path = "../store/" }
|
|
rustical_dav = { path = "../dav/" }
|
|
rustical_auth = { path = "../auth/" }
|
|
serde = { version = "1.0", features = ["serde_derive", "derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.35", features = ["sync", "full"] }
|
|
async-trait = "0.1"
|
|
thiserror = "1.0"
|