shipper 0.3.0-rc.2

Reliable, resumable `cargo publish` for Rust workspaces. Install with `cargo install shipper --locked`.
Documentation
1
2
3
4
5
6
7
8
9
10
//! The `shipper` binary — thin wrapper over [`shipper_cli::run`].
//!
//! Keep this file small. All command-line logic lives in the
//! `shipper-cli` crate; all engine logic lives in `shipper-core`. The
//! `shipper` package exists as the install surface: a maintainer
//! types `cargo install shipper --locked` and gets a binary named
//! `shipper` that forwards here.
fn main() -> anyhow::Result<()> {
    shipper_cli::run()
}