[package]
edition = "2024"
rust-version = "1.87"
name = "io-webdav"
version = "0.1.0"
authors = ["soywod <pimalaya.org@posteo.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WebDAV client library for Rust"
homepage = "https://pimalaya.org"
documentation = "https://docs.rs/io-webdav/latest/io_webdav"
readme = "README.md"
keywords = [
"io-free",
"no-std",
"coroutine",
"caldav",
"carddav",
]
categories = [
"api-bindings",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pimalaya/io-webdav"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
client = []
default = ["rustls-ring"]
native-tls = [
"client",
"pimalaya-stream/native-tls",
"dep:anyhow",
"dep:pimalaya-stream",
]
rustls-aws = [
"client",
"pimalaya-stream/rustls-aws",
"dep:anyhow",
"dep:pimalaya-stream",
]
rustls-ring = [
"client",
"pimalaya-stream/rustls-ring",
"dep:anyhow",
"dep:pimalaya-stream",
]
vendored = ["pimalaya-stream?/vendored"]
[lib]
name = "io_webdav"
path = "src/lib.rs"
[[example]]
name = "list_calendars"
path = "examples/list_calendars.rs"
required-features = ["rustls-ring"]
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "fastmail"
path = "tests/fastmail.rs"
[[test]]
name = "google"
path = "tests/google.rs"
[[test]]
name = "icloud"
path = "tests/icloud.rs"
[[test]]
name = "radicale"
path = "tests/radicale.rs"
[[test]]
name = "rfc4791"
path = "tests/rfc4791.rs"
[[test]]
name = "rfc4918"
path = "tests/rfc4918.rs"
[[test]]
name = "rfc5397"
path = "tests/rfc5397.rs"
[[test]]
name = "rfc6352"
path = "tests/rfc6352.rs"
[[test]]
name = "rfc6578"
path = "tests/rfc6578.rs"
[[test]]
name = "stalwart"
path = "tests/stalwart.rs"
[dependencies.anyhow]
version = "1"
optional = true
[dependencies.io-http]
version = "0.3"
default-features = false
[dependencies.log]
version = "0.4"
default-features = false
[dependencies.pimalaya-stream]
version = "0.1"
optional = true
default-features = false
[dependencies.quick-xml]
version = "0.41"
default-features = false
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.url]
version = "2.5"
features = ["serde"]
default-features = false
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.pimalaya-stream]
version = "0.1"
default-features = false
[dev-dependencies.rustls]
version = "0.23"
features = [
"logging",
"ring",
"std",
"tls12",
]
default-features = false
[dev-dependencies.rustls-platform-verifier]
version = "0.7"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.url]
version = "2.5"
default-features = false