rust-ldap icon indicating copy to clipboard operation
rust-ldap copied to clipboard

Rust LDAP Library

Results 3 rust-ldap issues
Sort by recently updated
recently updated
newest added

It would be valuable to know when to prefer this crate over https://github.com/inejge/ldap3

Do you plan on supporting LDAP over SSL in this crate? I tried swapping out the `TcpStream` for `SslStream` in the connection setup, but am getting `Error: Unexpected end of...

Currently this code exists: ``` rust // connection.rs pub fn search(&mut self, base: String, scope: Scope, alias: DerefAlias, size_limit: i32, time_limit: i32, types_only: bool, filters: Tag, // TODO: Figure something...