Skip to main content

release_kit/
lib.rs

1//! release-kit: a canonical release workflow, carried whole by one binary.
2//!
3//! The library exists so the crate's own tests can link the modules; the
4//! `rk` binary in `main.rs` is the product. `embedded` holds the payload
5//! and `payload_roots` its one inventory, `cli` the argument surface,
6//! `commands` the handlers, `skills` the user-scope skill install,
7//! `digest` the one hash type, and `error` the one exit-code matrix.
8
9pub mod applog;
10pub mod atomic;
11pub mod branches;
12pub mod cli;
13pub mod commands;
14pub mod detect;
15pub mod diagnostic;
16pub mod digest;
17pub mod embedded;
18pub mod error;
19pub mod events;
20pub mod landing;
21pub mod maintenance;
22pub mod output;
23pub mod payload_roots;
24pub mod probes;
25pub mod registry;
26pub mod setup;
27pub mod skills;
28pub mod worktree;