mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +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
394 B
Rust
20 lines
394 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[clap(name = "MyApp")]
|
|
#[clap(author = "Kevin K. <kbknapp@gmail.com>")]
|
|
#[clap(version = "1.0")]
|
|
#[clap(about = "Does awesome things", long_about = None)]
|
|
struct Cli {
|
|
#[clap(long)]
|
|
two: String,
|
|
#[clap(long)]
|
|
one: String,
|
|
}
|
|
|
|
fn main() {
|
|
let cli = Cli::parse();
|
|
|
|
println!("two: {:?}", cli.two);
|
|
println!("one: {:?}", cli.one);
|
|
}
|