Deadpool is a dead simple async pool for connections and objects of any type.
This crate implements a deadpool
manager for ldap3
| Feature | Description | Default |
| -------------| ----------------------------------------------------------- | ------- |
| tls-native
| Enable support for TLS connections using tokio-native-tls
| no |
| tls-rustls
| Enable support for TLS connections using tokio-rustls
| no |
```rust,ignore use deadpool_ldap::{Manager, Pool};
async fn main() { let manager = Manager::new("ldap://example.org"); let pool = Pool::builder(manager).max_size(5).build().unwrap();
let mut client = pool.get().await.unwrap();
result = client.simple_bind("uid=user,dc=example,dc=org", "password").await;
assert!(result.is_ok());
} ```
To send custom ldap connection settings use .withconnectionsettings() on the manager.
```rust,ignore use deadpool_ldap::{Manager, Pool}; use ldap3::LdapConnSettings;
async fn main() { let manager = Manager::new("ldap://example.org") .withconnectionsettings( LdapConnSettings::new() .setconntimeout(Duration::fromsecs(30)) ); let pool = Pool::builder(manager).maxsize(5).build().unwrap();
let mut client = pool.get().await.unwrap();
result = client.simple_bind("uid=user,dc=example,dc=org", "password").await;
assert!(result.is_ok());
} ```
Licensed under either of
Choose at your option!