diff --git a/Cargo.lock b/Cargo.lock index 218a790..a8189ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2366,9 +2366,9 @@ dependencies = [ [[package]] name = "ldap3_proto" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4598dd32dbd16d4fd06a1eb423bf569563d7c65e808ceae5ef3c12179134bc36" +checksum = "a29eca0a9fef365d6d376a1b262e269a17b1c8c6de2cee76618642cd3c923506" dependencies = [ "base64 0.21.0", "bytes", diff --git a/server/Cargo.toml b/server/Cargo.toml index bbf013d..3bb842d 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -35,7 +35,7 @@ itertools = "0.10" juniper = "0.15" jwt = "0.16" lber = "0.4.1" -ldap3_proto = "^0.4.2" +ldap3_proto = "^0.4.3" log = "*" orion = "0.17" rand_chacha = "0.3" diff --git a/server/src/infra/ldap_server.rs b/server/src/infra/ldap_server.rs index ad83c31..6cefcc8 100644 --- a/server/src/infra/ldap_server.rs +++ b/server/src/infra/ldap_server.rs @@ -14,7 +14,7 @@ use actix_rt::net::TcpStream; use actix_server::ServerBuilder; use actix_service::{fn_service, ServiceFactoryExt}; use anyhow::{anyhow, Context, Result}; -use ldap3_proto::{proto::LdapControl, proto::LdapMsg, proto::LdapOp, LdapCodec}; +use ldap3_proto::{control::LdapControl, proto::LdapMsg, proto::LdapOp, LdapCodec}; use rustls::PrivateKey; use tokio_rustls::TlsAcceptor as RustlsTlsAcceptor; use tokio_util::codec::{FramedRead, FramedWrite};