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 `mail` subsystem facade (engine spec ยง18).
//!
//! Thin, namespaced re-export of the certified [`arcature_mail`] crate. Gated by the
//! `mail` Cargo feature so an application that does not use this subsystem pays
//! no compile cost. Items live under [`crate::mail`] to avoid glob collisions
//! with other subsystems that re-export the same upstream crate.
//!
//! [`arcature_mail`]: https://docs.rs/arcature_mail

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

pub use arcature_mail::*;