shipper-core 0.3.0-rc.2

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
//! Public façade for git operations.
//!
//! Re-exports the absorbed `crate::ops::git` module's public API so external
//! consumers (notably `shipper-cli`) keep using `shipper::git::*` after the
//! `shipper-git` microcrate absorption.
//!
//! See `crates/shipper-core/src/ops/git/CLAUDE.md` for architectural notes.

pub use crate::ops::git::{collect_git_context, ensure_git_clean, is_git_clean};