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 cli;
12pub mod commands;
13pub mod detect;
14pub mod diagnostic;
15pub mod digest;
16pub mod embedded;
17pub mod error;
18pub mod events;
19pub mod landing;
20pub mod output;
21pub mod payload_roots;
22pub mod probes;
23pub mod registry;
24pub mod setup;
25pub mod skills;