mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
4b51b8e253
`#[clap(about)]` only overrides `about`. If the doc comment also sets `long_about`, it won't be overridden. This change is to help raise visibility of reseting `long_about` in these cases.
20 lines
432 B
Rust
20 lines
432 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[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, parse(from_os_str))]
|
|
manifest_path: Option<std::path::PathBuf>,
|
|
}
|
|
|
|
fn main() {
|
|
let Cargo::ExampleDerive(args) = Cargo::parse();
|
|
println!("{:?}", args.manifest_path);
|
|
}
|