arcature 2026.2.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
// The request pipeline assembler — composes the lifecycle zones in the
// correct order (engine spec §7). One responsibility per file (AGENTS.md §1).
//
// `mod.rs` declares child modules and re-exports the public surface; it
// contains no business logic.

pub(crate) mod assemble;
#[cfg(feature = "dx")]
pub(crate) mod error_mapping;
#[cfg(feature = "observe")]
mod matched_route;
mod zones;