release-kit 0.1.0

A canonical release workflow: a technology-agnostic method, per-technology bindings, and the rk CLI that lands and serves them.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Arguments for `rk payload`.

use clap::Args;

/// Report the payload this binary carries: the version, every root, and
/// the digests that identify the artifact set.
#[derive(Debug, Args)]
pub struct PayloadArgs {
    /// Emit one JSON object on stdout instead of the human report.
    #[arg(long)]
    pub json: bool,
}