clap

Command Line Argument Parser for Rust

Crates.io Crates.io License License Build Status Coverage Status Contributors

Dual-licensed under Apache 2.0 or MIT.

  1. About
  2. Tutorial: Builder API, Derive API
  3. Examples
  4. API Reference
  5. CHANGELOG
  6. FAQ
  7. Questions & Discussions
  8. Contributing
  9. Sponsors

About

Create your command-line parser, with all of the bells and whistles, declaratively or procedurally.

Example

This uses our Derive API which provides access to the Builder API as attributes on a struct:

```rust,no_run use clap::Parser;

/// Simple program to greet a person

[derive(Parser, Debug)]

[clap(author, version, about, long_about = None)]

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.1.9", features = ["derive"] } bash $ demo --help clap [..] Simple program to greet a person

USAGE: demo[EXE] [OPTIONS] --name

OPTIONS: -c, --count Number of times to greet [default: 1] -h, --help Print help information -n, --name Name of the person to greet -V, --version Print version information `` *(version number and.exe` extension on windows replaced by placeholders)*

Aspirations

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.

Selecting an API

Why use the declarative Derive API: - Easier to read, write, and modify - Easier to keep the argument declaration and reading of argument in sync - Easier to reuse, e.g. clap-verbosity-flag

Why use the procedural Builder API: - Faster compile times if you aren't already using other procedural macros - More flexible, e.g. you can look up how many times an argument showed up, what its values were, and what were the indexes of those values. The Derive API can only report presence, number of occurrences, or values but no indices or combinations of data.

Related Projects

Feature Flags

Default Features

Optional features

Experimental features

Warning: These may contain breaking changes between minor releases.

Sponsors

Gold

Silver

Bronze

Backer