arcature 2026.2.1

Arcature application framework: a high-level Application facade over the certified Arcature subsystems, with the low-level Axum/Tower escape hatch preserved.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The `auth` subsystem facade (engine spec ยง18).
//!
//! Thin, namespaced re-export of the certified [`arcature_auth`] crate. Gated by the
//! `auth` Cargo feature so an application that does not use this subsystem pays
//! no compile cost. Items live under [`crate::auth`] to avoid glob collisions
//! with other subsystems that re-export the same upstream crate.
//!
//! [`arcature_auth`]: https://docs.rs/arcature_auth

#![cfg(feature = "auth")]

pub use arcature_auth::*;