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 embedded
5//! sources and `distribution_roots` their one inventory, `cli` the
6//! argument surface, `commands` the handlers, `projection` the one pure
7//! candidate tree over the embedded sources, `landing` the parameters and
8//! the direct writes into a target, `stage` the disposable candidate
9//! stage over the projection, `self_depend` the consumer pin, `depend`
10//! the dependency matrix, `skills` the user-scope skill install, `digest`
11//! the one hash type, and `error` the one exit-code matrix.
12
13pub mod applog;
14pub mod assess;
15pub mod atomic;
16pub mod branches;
17pub mod cargo_package;
18pub mod cli;
19pub mod commands;
20pub mod config;
21pub mod depend;
22pub mod detect;
23pub mod diagnostic;
24pub mod digest;
25pub mod distribution_roots;
26pub mod embedded;
27pub mod error;
28pub mod events;
29pub(crate) mod held;
30pub mod integrate;
31pub mod issue;
32pub mod landing;
33pub mod maintenance;
34pub mod output;
35pub mod probes;
36pub mod profile;
37pub mod projection;
38pub mod registry;
39pub mod self_depend;
40pub mod setup;
41pub mod skills;
42pub mod stage;
43pub mod worktree;