summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/tutorial_derive/02_crate.rs
blob: 33a7a4ee0fbf7743e0c334e34fc534f0a38df395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Parser;

#[derive(Parser)]
#[command(author, version, about, long_about = None)] // Read from `Cargo.toml`
struct Cli {
    #[arg(long)]
    two: String,
    #[arg(long)]
    one: String,
}

fn main() {
    let cli = Cli::parse();

    println!("two: {:?}", cli.two);
    println!("one: {:?}", cli.one);
}