fix 'default-features = false' for ldap3

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2023-02-08 14:26:34 +01:00
parent cd61c8741c
commit 4ff5c59559
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ hex = "0.4"
http = "0.2" http = "0.2"
hyper = "0.14.5" hyper = "0.14.5"
lazy_static = "1.4" lazy_static = "1.4"
ldap3 = "0.11" ldap3 = { version = "0.11", default-features = false }
libc = "0.2.107" libc = "0.2.107"
log = "0.4.17" log = "0.4.17"
native-tls = "0.2" native-tls = "0.2"

View File

@ -10,7 +10,7 @@ description = "Proxmox library for LDAP authentication/synchronization"
[dependencies] [dependencies]
anyhow.workspace = true anyhow.workspace = true
ldap3 = { workspace = true, default_features = false, features = ["tls"] } ldap3 = { workspace = true, default-features = false, features = ["tls"] }
serde = { workspace = true, features = ["derive"] } serde = { workspace = true, features = ["derive"] }
native-tls.workspace = true native-tls.workspace = true