#async #ldap #high-level

simple-ldap

A high-level LDAP client for Rust

8 releases (5 major breaking)

new 6.0.1 Apr 17, 2025
5.1.0 Feb 26, 2025
4.0.0 Feb 4, 2025
3.1.0 Feb 4, 2025
0.0.4 Jun 4, 2023

#266 in Authentication

Download history 23/week @ 2024-12-27 25/week @ 2025-01-03 87/week @ 2025-01-10 27/week @ 2025-01-17 19/week @ 2025-01-24 431/week @ 2025-01-31 108/week @ 2025-02-07 236/week @ 2025-02-14 151/week @ 2025-02-21 70/week @ 2025-02-28 28/week @ 2025-03-07 15/week @ 2025-03-14 1/week @ 2025-03-28 1/week @ 2025-04-04 171/week @ 2025-04-11

175 downloads per month

MIT/Apache

88KB
1.5K SLoC

Simple LDAP client library for Ldap3

A ldap client library that wraps ldap3 to make it easy to use.

CI Crates.io Documentation

Usage

Adding simple_ldap as a dependency to your project:

cargo add simple-ldap

Other useful pieces you'll likely need:

cargo add url serde --features serde/derive

Example

There are plenty more examples in the documentation!

Search records

use simple_ldap::{
    LdapClient, LdapConfig,
    filter::EqFilter,
    ldap3::Scope
};
use url::Url;
use serde::Deserialize;
use serde_with::serde_as;
use serde_with::OneOrMany;

// A type for deserializing the search result into.
#[serde_as] // serde_with for multiple values
#[derive(Debug, Deserialize)]
struct User {
    uid: String,
    cn: String,
    sn: String,
    #[serde_as(as = "OneOrMany<_>")]
    addresses: Vec<String>,
}


#[tokio::main]
async fn main(){
    let ldap_config = LdapConfig {
        bind_dn: String::from("cn=manager"),
        bind_password: String::from("password"),
        ldap_url: Url::parse("ldaps://localhost:1389/dc=example,dc=com").unwrap(),
        dn_attribute: None,
        connection_settings: None
    };
    let mut client = LdapClient::new(ldap_config).await.unwrap();
    let name_filter = EqFilter::from("cn".to_string(), "Sam".to_string());
    let user: User = client
        .search::<User>(
        "ou=people,dc=example,dc=com",
        Scope::OneLevel,
        &name_filter,
        &vec!["cn", "sn", "uid","addresses"],
    ).await.unwrap();
}

Dependencies

~8–24MB
~347K SLoC