From 4ff5c5955994d0640211ab358c08b1991ee7a9ef Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 8 Feb 2023 14:26:34 +0100 Subject: [PATCH] fix 'default-features = false' for ldap3 Signed-off-by: Wolfgang Bumiller --- Cargo.toml | 2 +- proxmox-ldap/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 54891536..2b75d7d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ hex = "0.4" http = "0.2" hyper = "0.14.5" lazy_static = "1.4" -ldap3 = "0.11" +ldap3 = { version = "0.11", default-features = false } libc = "0.2.107" log = "0.4.17" native-tls = "0.2" diff --git a/proxmox-ldap/Cargo.toml b/proxmox-ldap/Cargo.toml index 02cdb141..9e687ec4 100644 --- a/proxmox-ldap/Cargo.toml +++ b/proxmox-ldap/Cargo.toml @@ -10,7 +10,7 @@ description = "Proxmox library for LDAP authentication/synchronization" [dependencies] anyhow.workspace = true -ldap3 = { workspace = true, default_features = false, features = ["tls"] } +ldap3 = { workspace = true, default-features = false, features = ["tls"] } serde = { workspace = true, features = ["derive"] } native-tls.workspace = true