Skip to main content

release_kit/cli/
payload.rs

1//! Arguments for `rk payload`.
2
3use clap::Args;
4
5/// Report the payload this binary carries: the version, every root, and
6/// the digests that identify the artifact set.
7#[derive(Debug, Args)]
8pub struct PayloadArgs {
9    /// Emit one JSON object on stdout instead of the human report.
10    #[arg(long)]
11    pub json: bool,
12}