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
//! Single-responsibility helpers for the sequential publish orchestrator.
//!
//! `engine::run_publish` remains the public entry point, while this module
//! owns the mechanically separate pieces around bootstrap, resume-gating, and
//! end-of-run finalization.

pub(super) mod bootstrap;
pub(super) mod finalize;
pub(super) mod resume;