feat: Initial accept loop
This commit is contained in:
commit
d30df04064
10 changed files with 1764 additions and 0 deletions
22
Cargo.toml
Normal file
22
Cargo.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
[package]
|
||||
name = "llldap"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
argh = "0.1.19"
|
||||
camino = "1.2.5"
|
||||
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"
|
||||
Loading…
Reference in a new issue