shipper-core 0.4.0

Core library behind the `shipper` CLI: engine, planning, state, registry, and remediation primitives for `cargo publish` workspaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Layer 3: persistence. State, events, receipts, and the StateStore trait.
//!
//! May import from `runtime` and `ops`. Must not import from `engine` or `plan`.
//! See `CLAUDE.md` in this folder for the architectural rules.

pub mod consistency;
pub mod events;
pub mod execution_state;
pub mod rebuild;
pub mod reconciliation;
pub mod rehearsal;