//! In-tree request filter (whitelist / blacklist) for the HTTP routing kernel.
//!
//! | Submodule | Role |
//! |-----------|------|
//! | [`policy`] | Rules, env/CSV parsing, allow/deny evaluation |
//! | [`store`] | Live [`FilterPolicy`] behind `RwLock` |
//! | [`layer`] | Axum middleware |
//! | [`control`] | Runtime reload via bus (feature **`filter-control`**) |
//!
//! Configure at startup with **`NAUTALID_FILTER_DENY`** / **`NAUTALID_FILTER_ALLOW`**
//! (comma-separated IP, CIDR, or path prefix).
pub use apply;
pub use ;
pub use ;