mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
3f2625fc5e
This supersedes #4692
20 lines
466 B
Rust
20 lines
466 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)] // requires `derive` feature
|
|
#[command(name = "cargo")]
|
|
#[command(bin_name = "cargo")]
|
|
enum CargoCli {
|
|
ExampleDerive(ExampleDeriveArgs),
|
|
}
|
|
|
|
#[derive(clap::Args)]
|
|
#[command(author, version, about, long_about = None)]
|
|
struct ExampleDeriveArgs {
|
|
#[arg(long)]
|
|
manifest_path: Option<std::path::PathBuf>,
|
|
}
|
|
|
|
fn main() {
|
|
let CargoCli::ExampleDerive(args) = CargoCli::parse();
|
|
println!("{:?}", args.manifest_path);
|
|
}
|