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
//! Server lifecycle for [`App`](crate::App).
//!
//! Serving uses a caller-provided listener (explicit binding, testability,
//! container/socket-activation friendly — see Phase 1 spec §7) and forwards to
//! [`axum::serve`]. Arcature does not implement an OS signal framework; the
//! graceful-shutdown variant accepts a caller-controlled future.

mod serve;
mod serve_with_shutdown;