mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
21 lines
413 B
Rust
21 lines
413 B
Rust
|
use clap::Parser;
|
||
|
|
||
|
#[derive(Parser)]
|
||
|
#[clap(name = "cargo")]
|
||
|
#[clap(bin_name = "cargo")]
|
||
|
enum Cargo {
|
||
|
ExampleDerive(ExampleDerive),
|
||
|
}
|
||
|
|
||
|
#[derive(clap::Args)]
|
||
|
#[clap(about, author, version)]
|
||
|
struct ExampleDerive {
|
||
|
#[clap(long, parse(from_os_str))]
|
||
|
manifest_path: Option<std::path::PathBuf>,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let Cargo::ExampleDerive(args) = Cargo::parse();
|
||
|
println!("{:?}", args.manifest_path);
|
||
|
}
|