gasbench/
cli.rs

1use clap::Parser;
2
3#[derive(Parser, Debug)]
4pub struct Cli {
5    #[arg(short, long)]
6    pub save: bool,
7
8    #[arg(short, long)]
9    pub anvil: bool,
10
11    #[arg(short, long)]
12    pub filter: Option<String>,
13
14    #[arg(value_name = "File", help = "File name")]
15    pub file: Option<String>,
16}