//! LDAP v3 protocol core (RFC 4511), feature-gated (`ldap`).
//!
//! The AD/LDAP-replacement foundation: a restricted-BER codec ([`ber`]), the
//! search-filter model ([`filter`]), and the message grammar ([`message`]) for
//! the read path (bind / search / unbind requests + their responses). Pure,
//! transport-free — a server drives a TCP listener with these; add/modify/
//! delete (the write path) land on top later.
pub use BerError;
pub use Filter;
pub use ;