Command Line Argument Parser for Rust
Dual-licensed under Apache 2.0 or MIT.
Create your command-line parser, with all of the bells and whistles, declaratively or procedurally.
```rust,no_run use clap::Parser;
/// Simple program to greet a person
struct Args { /// Name of the person to greet #[clap(short, long)] name: String,
/// Number of times to greet
#[clap(short, long, default_value_t = 1)]
count: u8,
}
fn main() { let args = Args::parse();
for _ in 0..args.count {
println!("Hello {}!", args.name)
}
}
Add this to `Cargo.toml`:
toml
[dependencies]
clap = { version = "3.0.8", features = ["derive"] }
bash
$ demo --help
clap [..]
A simple to use, efficient, and full-featured Command Line Argument Parser
USAGE:
demo[EXE] [OPTIONS] --name
OPTIONS:
-c, --count
*(version number and
.exe` extension on windows replaced by placeholders)*
While these aspirations can be at odds with fast build times and low binary size, we will still strive to keep these reasonable for the flexibility you get. Check out the argparse-benchmarks for CLI parsers optimized for other use cases.
*
) on Windows like you do Linuxtrycmd
: Snapshot testing
assert_cmd
and assert_fs
no_std
environments in a backwards compatible manner.Did you mean '--myoption'?
feature for when users make typos.#[derive(Parser)]
). Without this you must use one of the other methods of creating a clap
CLI listed above.CARGO_*
environment variables.Warning: These may contain breaking changes between minor releases.
App::replace
AppSettings::Multicall
ArgMatches::grouped_values_of