Files
rustical/crates/dav/Cargo.toml
2025-06-07 20:17:50 +02:00

35 lines
965 B
TOML

[package]
name = "rustical_dav"
version.workspace = true
edition.workspace = true
description.workspace = true
repository.workspace = true
publish = false
[features]
actix = ["dep:actix-web", "dep:tracing-actix-web", "dep:http_02"]
axum = ["dep:axum", "dep:axum-extra", "dep:tower"]
[dependencies]
axum = { version = "0.8", optional = true }
axum-extra = { version = "0.10", optional = true, features = ["typed-header"] }
tower = { version = "0.5", optional = true }
http_02 = { workspace = true, optional = true }
rustical_xml.workspace = true
async-trait.workspace = true
futures-util.workspace = true
quick-xml.workspace = true
serde.workspace = true
thiserror.workspace = true
itertools.workspace = true
log.workspace = true
derive_more.workspace = true
tracing.workspace = true
tokio.workspace = true
http.workspace = true
actix-web = { workspace = true, optional = true }
tracing-actix-web = { workspace = true, optional = true }
headers.workspace = true