-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
49 lines (44 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[profile.release]
debug = true
lto = "thin"
[workspace]
resolver = "2"
members = ["proto", "client", "cli"]
[workspace.package]
version = "0.5.2"
authors = ["William Brown <[email protected]>"]
rust-version = "1.74"
edition = "2021"
license = "MPL-2.0"
homepage = "https://github.com/kanidm/ldap3/"
repository = "https://github.com/kanidm/ldap3/"
keywords = ["ldap", "protocol", "authentication", "chaos"]
[workspace.dependencies]
ldap3_client = { path = "./client", version = "0.5.0" }
ldap3_proto = { path = "./proto", version = "0.5.0" }
base64 = "0.21"
bytes = "^1.1.0"
clap = "^3.2"
clap_complete = "^3.2.3"
futures = "^0.3.21"
futures-util = "^0.3.21"
lber = "^0.4.0"
# Must match lber
nom = "7"
peg = "0.8.1"
openssl = "^0.10.38"
ron = "^0.8.0"
rpassword = "7.0.0"
serde = { version = "^1.0.136", features = ["derive"] }
serde_json = "^1.0.79"
serde_test = "^1.0.56"
serde_with = "3.9.0"
thiserror = "1.0"
tokio = "^1.17.0"
tokio-util = "^0.7.1"
tokio-openssl = "^0.6.3"
tracing = { version = "^0.1.34", features = ["attributes"] }
tracing-subscriber = "^0.3.11"
url = "^2.2.2"
uuid = "^1.1.2"
sspi = "^0.11.1"