harn-cli 0.7.61

CLI for the Harn programming language — run, test, REPL, format, and lint
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Args;

#[derive(Debug, Args)]
pub(crate) struct VerifyArgs {
    /// Path to the signed provenance receipt JSON file.
    pub receipt: String,
    /// Emit JSON instead of human-readable output.
    #[arg(long)]
    pub json: bool,
}