feat: Initial implementation (bind/search/whoami)
This commit is contained in:
commit
d42508b15e
14 changed files with 2325 additions and 0 deletions
18
Cargo.toml
Normal file
18
Cargo.toml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
[package]
|
||||
name = "multildap"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.104"
|
||||
clap = { version = "4.6.6", features = ["derive"] }
|
||||
futures-util = { version = "^0.3.32", features = [ "sink" ] }
|
||||
indexmap = "2.14.0"
|
||||
ldap3 = { version = "0.12.1", default-features = false }
|
||||
ldap3_proto = { version = "0.8.0", features = ["serde"] }
|
||||
log = "0.4.33"
|
||||
pretty_env_logger = "0.5.0"
|
||||
serde = { version = "1.0.229", features = ["derive"] }
|
||||
tokio = { version = "1.53.1", features = ["net", "rt", "macros", "time", "io-util", "fs"] }
|
||||
tokio-util = "0.7.19"
|
||||
toml = "1.1.4"
|
||||
Loading…
Reference in a new issue