File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ name = "ldap3"
9
9
readme = " README.md"
10
10
repository = " https://github.com/inejge/ldap3"
11
11
version = " 0.12.0-beta.1"
12
- edition = " 2021 "
12
+ edition = " 2024 "
13
13
14
14
[package .metadata .docs .rs ]
15
15
default-features = false
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ impl Ldap {
320
320
let cti = if self . has_tls {
321
321
let cbt = {
322
322
let mut cbt = Vec :: from ( & b"tls-server-end-point:" [ ..] ) ;
323
- if let Some ( ref token) = self . tls_endpoint_token . as_ref ( ) {
323
+ if let Some ( token) = self . tls_endpoint_token . as_ref ( ) {
324
324
cbt. extend ( token) ;
325
325
Some ( cbt)
326
326
} else {
@@ -496,7 +496,7 @@ impl Ldap {
496
496
} ;
497
497
if self . has_tls {
498
498
let mut cbt = Vec :: from ( & b"tls-server-end-point:" [ ..] ) ;
499
- if let Some ( ref token) = self . tls_endpoint_token . as_ref ( ) {
499
+ if let Some ( token) = self . tls_endpoint_token . as_ref ( ) {
500
500
cbt. extend ( token) ;
501
501
ntlm. set_channel_bindings ( & cbt) ;
502
502
}
You can’t perform that action at this time.
0 commit comments