shipper_core/state/mod.rs
1//! Layer 3: persistence. State, events, receipts, and the StateStore trait.
2//!
3//! May import from `runtime` and `ops`. Must not import from `engine` or `plan`.
4//! See `CLAUDE.md` in this folder for the architectural rules.
5
6pub mod consistency;
7pub mod events;
8pub mod execution_state;
9pub mod rehearsal;