![Latest Version] ![Docs badge]
Wrapper over ldap3 for use with tarantool-module.
View the examples directory on how to create a function for use with tarantool-module.
```rust use ldapico::Ldap; use tokio::sync::oneshot::channel;
fn main() { let ldap = Ldap::new("ldap://127.0.0.1:389"); let (tx, rx) = channel(); ldap.simplebind(tx, "cn=user1,ou=users,dc=example,dc=org", "pwd1"); let result = rx.blockingrecv().unwrap().unwrap(); assert!(result.success().is_ok()); } ```