clap/examples/cargo-example-derive.rs
2022-09-02 15:39:13 -05:00

20 lines
449 B
Rust

use clap::Parser;
#[derive(Parser)] // requires `derive` feature
#[command(name = "cargo")]
#[command(bin_name = "cargo")]
enum Cargo {
ExampleDerive(ExampleDerive),
}
#[derive(clap::Args)]
#[command(author, version, about, long_about = None)]
struct ExampleDerive {
#[arg(long)]
manifest_path: Option<std::path::PathBuf>,
}
fn main() {
let Cargo::ExampleDerive(args) = Cargo::parse();
println!("{:?}", args.manifest_path);
}