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, `devshell` the consumer pin, `skills` the
7//! user-scope skill install,
8//! `digest` the one hash type, and `error` the one exit-code matrix.
9
10pub mod applog;
11pub mod assess;
12pub mod atomic;
13pub mod branches;
14pub mod cli;
15pub mod commands;
16pub mod detect;
17pub mod devshell;
18pub mod diagnostic;
19pub mod digest;
20pub mod embedded;
21pub mod error;
22pub mod events;
23pub mod landing;
24pub mod maintenance;
25pub mod output;
26pub mod payload_roots;
27pub mod probes;
28pub mod registry;
29pub mod setup;
30pub mod skills;
31pub mod worktree;