mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 13:52:34 +00:00
20 lines
441 B
Rust
20 lines
441 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)] // requires `derive` feature
|
|
#[clap(name = "cargo")]
|
|
#[clap(bin_name = "cargo")]
|
|
enum Cargo {
|
|
ExampleDerive(ExampleDerive),
|
|
}
|
|
|
|
#[derive(clap::Args)]
|
|
#[clap(author, version, about, long_about = None)]
|
|
struct ExampleDerive {
|
|
#[clap(long)]
|
|
manifest_path: Option<std::path::PathBuf>,
|
|
}
|
|
|
|
fn main() {
|
|
let Cargo::ExampleDerive(args) = Cargo::parse();
|
|
println!("{:?}", args.manifest_path);
|
|
}
|