rust-ldap
rust-ldap copied to clipboard
Rust LDAP Library
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...