hypcmp 0.3.2

Extension to run hyperfine with toml files w/ commit switches.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Parser;
use std::path::PathBuf;

/// Command-line Interface (CLI) for the hypcmp library
#[derive(Parser, Debug)]
#[clap(author, version, about, long_about = None)]
pub struct Cli {
    /// Configuration file [*.toml]
    #[clap(value_parser)]
    pub config: PathBuf,

    #[clap(flatten)]
    pub verbose: clap_verbosity_flag::Verbosity,
}