yamldap 0.1.2

A lightweight LDAP server that serves directory data from YAML files
Documentation
1
2
3
4
5
6
7
8
9
pub mod auth;
pub mod entry;
pub mod index;
pub mod storage;

pub use auth::AuthHandler;
pub use entry::{AttributeSyntax, AttributeValue, LdapAttribute, LdapEntry};
pub use index::{AttributeIndex, ObjectClassIndex};
pub use storage::Directory;