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