r2d2-ldap

Build Latest Version Docs

LDAP support for the r2d2 connection pool

Install

Add this to your Cargo.toml:

toml [dependencies] r2d2-ldap = "0.1.1"

Basic Usage

```rust use std::thread; use r2d2_ldap::LDAPConnectionManager;

fn main() { let pool = r2d2::Pool::new(LDAPConnectionManager("ldap://example.org")).unwrap(); let mut ldap = pool.get().unwrap(); ldap.simple_bind("uid=john,cn=users,dc=example,dc=org", "password").unwrap(); } ```

License