arcature 2026.1.0

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
13
14
15
16
17
//! The Arcature application type and its responsibilities.
//!
//! This module groups the construction, routing, composition, layering,
//! state, and escape-hatch responsibilities of [`App`]. Each responsibility
//! lives in its own file behind its own `impl` block, per the one-file-one-
//! responsibility law (`AGENTS.md`).

mod from_router;
mod into_router;
mod layer;
mod merge;
mod new;
mod route;
mod ty;
mod with_state;

pub use ty::App;