veridian_kernel/net/ldap/mod.rs
1//! LDAP Client Implementation (RFC 4511)
2//!
3//! Provides an LDAPv3 client for directory service operations including
4//! bind, search, compare, modify, add, and delete. Includes Active Directory
5//! integration helpers and a TTL-based credential cache.
6
7#![allow(dead_code)]
8
9pub mod client;