llldap/Cargo.toml

24 lines
630 B
TOML
Raw Normal View History

2026-09-01 15:27:28 +02:00
[package]
name = "llldap"
version = "0.1.0"
edition = "2024"
[dependencies]
argh = "0.1.19"
camino = "1.2.5"
2026-09-01 21:18:19 +02:00
dn_escape = { path = "vendor/dn_escape" }
futures-util = { version = "0.3.34", features = ["sink"] }
2026-09-01 15:27:28 +02:00
ldap3_proto = "0.8.1"
serde = { version = "1.0.229", features = ["derive"] }
tokio = { version = "1.53.1", features = ["macros", "net", "rt", "time", "sync"] }
tokio-util = { version = "0.7.19", features = ["codec"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
uuid = { version = "1.26.0", features = ["v4"] }
[lints.clippy]
suspicious = "deny"
complexity = "deny"
pedantic = "deny"
perf = "deny"
style = "deny"