clap

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

Command Line Argument Parser for Rust

It is a simple-to-use, efficient, and full-featured library for parsing command line arguments and subcommands when writing command line, console or terminal applications.

We are currently hard at work trying to release 3.0. We have a 3.0.0-beta.4 prerelease out but we do not give any guarantees that its API is stable. We do not have a changelog yet which will be written down after we are sure about the API stability. We recommend users to not update to the prerelease version yet and to wait for the official 3.0.

If you're looking for the readme & examples for clap v2.33 - find it on github, crates.io, docs.rs.

  1. About
  2. FAQ
  3. Features
  4. Quick Example
    1. Using Derive Macros
    2. Using Builder Pattern
    3. Using YAML
    4. Using Macros
    5. Running it
  5. Try it!
    1. Pre-Built Test
    2. Build Your Own Binary
  6. Usage
    1. Optional Dependencies / Features
      1. Features enabled by default
      2. Opt-in features
    2. More Information
  7. Sponsors
  8. Contributing
    1. Compatibility Policy
      1. Minimum Supported Version of Rust (MSRV)
      2. Breaking Changes
  9. License
  10. Related Crates

About

clap is used to parse and validate the string of command line arguments provided by a user at runtime. You provide the list of valid possibilities, and clap handles the rest. This means you focus on your applications functionality, and less on the parsing and validating of arguments.

clap provides many things 'for free' (with no configuration) including the traditional version and help switches (or flags) along with associated messages. If you are using subcommands, clap will also auto-generate a help subcommand and separate associated help messages.

Once clap parses the user provided string of arguments, it returns the matches along with any applicable values. If the user made an error or typo, clap informs them with a friendly message and exits gracefully (or returns a Result type and allows you to perform any clean up prior to exit). Because of this, you can make reasonable assumptions in your code about the validity of the arguments prior to your applications main execution.

FAQ

How does clap compare to structopt?

For a full FAQ, see this

Features

Below are a few of the features which clap supports, full descriptions and usage can be found in the documentation and examples directory

Quick Example

The following examples show a quick example of some of the very basic functionality of clap. For more advanced usage, such as requirements, conflicts, groups, multiple values and occurrences see the documentation, examples directory of this repository.

NOTE: All of these examples are functionally the same, but show different styles in which to use clap. These different styles are purely a matter of personal preference.

Add clap to your Cargo.toml

toml [dependencies] clap = "3.0.0-beta.4"

Using Derive Macros

The first example shows the simplest way to use clap, by defining a struct. If you're familiar with the structopt crate you're in luck, it's the same! (In fact it's the exact same code running under the covers!)

```rust,ignore // (Full example with detailed comments in examples/01dquickexample.rs) // // This example demonstrates clap's full 'custom derive' style of creating arguments which is the // simplest method of use, but sacrifices some flexibility. use clap::{AppSettings, Clap};

/// This doc string acts as a help message when the user runs '--help' /// as do all doc strings on fields

[derive(Clap)]

[clap(version = "1.0", author = "Kevin K. kbknapp@gmail.com")]

[clap(setting = AppSettings::ColoredHelp)]

struct Opts { /// Sets a custom config file. Could have been an Option with no default too #[clap(short, long, defaultvalue = "default.conf")] config: String, /// Some input. Because this isn't an Option it's required to be used input: String, /// A level of verbosity, and can be used multiple times #[clap(short, long, parse(fromoccurrences))] verbose: i32, #[clap(subcommand)] subcmd: SubCommand, }

[derive(Clap)]

enum SubCommand { #[clap(version = "1.3", author = "Someone E. someone_else@other.com")] Test(Test), }

/// A subcommand for controlling testing

[derive(Clap)]

struct Test { /// Print debug info #[clap(short)] debug: bool }

fn main() { let opts: Opts = Opts::parse();

// Gets a value for config if supplied by user, or defaults to "default.conf"
println!("Value for config: {}", opts.config);
println!("Using input file: {}", opts.input);

// Vary the output based on how many times the user used the "verbose" flag
// (i.e. 'myprog -v -v -v' or 'myprog -vvv' vs 'myprog -v'
match opts.verbose {
    0 => println!("No verbose info"),
    1 => println!("Some verbose info"),
    2 => println!("Tons of verbose info"),
    _ => println!("Don't be ridiculous"),
}

// You can handle information about subcommands by requesting their matches by name
// (as below), requesting just the name used, or both at the same time
match opts.subcmd {
    SubCommand::Test(t) => {
        if t.debug {
            println!("Printing debug info...");
        } else {
            println!("Printing normally...");
        }
    }
}

// more program logic goes here...

} ```

Using Builder Pattern

This second method shows a method using the 'Builder Pattern' which allows more advanced configuration options (not shown in this small example), or even dynamically generating arguments when desired. The downside is it's more verbose.

```rust,norun // (Full example with detailed comments in examples/01bquick_example.rs) // // This example demonstrates clap's "builder pattern" method of creating arguments // which the most flexible, but also most verbose. use clap::{Arg, App};

fn main() { let matches = App::new("My Super Program") .version("1.0") .author("Kevin K. kbknapp@gmail.com") .about("Does awesome things") .arg(Arg::new("config") .short('c') .long("config") .valuename("FILE") .about("Sets a custom config file") .takesvalue(true)) .arg(Arg::new("INPUT") .about("Sets the input file to use") .required(true) .index(1)) .arg(Arg::new("v") .short('v') .multipleoccurrences(true) .takesvalue(true) .about("Sets the level of verbosity")) .subcommand(App::new("test") .about("controls testing features") .version("1.3") .author("Someone E. someone_else@other.com") .arg(Arg::new("debug") .short('d') .about("print debug information verbosely"))) .get_matches();

// You can check the value provided by positional arguments, or option arguments
if let Some(i) = matches.value_of("INPUT") {
    println!("Value for input: {}", i);
}

if let Some(c) = matches.value_of("config") {
    println!("Value for config: {}", c);
}

// You can see how many times a particular flag or argument occurred
// Note, only flags can have multiple occurrences
match matches.occurrences_of("v") {
    0 => println!("Verbose mode is off"),
    1 => println!("Verbose mode is kind of on"),
    2 => println!("Verbose mode is on"),
    _ => println!("Don't be crazy"),
}

// You can check for the existence of subcommands, and if found use their
// matches just as you would the top level app
if let Some(ref matches) = matches.subcommand_matches("test") {
    // "$ myapp test" was run
    if matches.is_present("debug") {
        // "$ myapp test -d" was run
        println!("Printing debug info...");
    } else {
        println!("Printing normally...");
    }
}

// Continued program logic goes here...

} ```

The next example shows a far less verbose method, but sacrifices some of the advanced configuration options (not shown in this small example). This method also takes a very minor runtime penalty.

```rust,norun // (Full example with detailed comments in examples/01aquick_example.rs) // // This example demonstrates clap's "usage strings" method of creating arguments // which is less verbose use clap::App;

fn main() { let matches = App::new("myapp") .version("1.0") .author("Kevin K. kbknapp@gmail.com") .about("Does awesome things") .arg("-c, --config=[FILE] 'Sets a custom config file'") .arg(" 'Sets the input file to use'") .arg("-v... 'Sets the level of verbosity'") .subcommand(App::new("test") .about("controls testing features") .version("1.3") .author("Someone E. someone_else@other.com") .arg("-d, --debug 'Print debug information'")) .get_matches();

// Same as previous example...

} ```

Using YAML

This third method shows how you can use a YAML file to build your CLI and keep your Rust source tidy or support multiple localized translations by having different YAML files for each localization.

First, create the cli.yaml file to hold your CLI options, but it could be called anything we like:

yaml name: myapp version: "1.0" author: Kevin K. <kbknapp@gmail.com> about: Does awesome things args: - config: short: c long: config value_name: FILE about: Sets a custom config file takes_value: true - INPUT: about: Sets the input file to use required: true index: 1 - verbose: short: v multiple: true about: Sets the level of verbosity subcommands: - test: about: controls testing features version: "1.3" author: Someone E. <someone_else@other.com> args: - debug: short: d about: print debug information

Since this feature requires additional dependencies that not everyone may want, it is not compiled in by default and we need to enable a feature flag in Cargo.toml:

Simply add the yaml feature flag to your Cargo.toml.

toml [dependencies] clap = { version = "3.0.0-beta.4", features = ["yaml"] }

Finally we create our main.rs file just like we would have with the previous two examples:

```rust,ignore // (Full example with detailed comments in examples/17yaml.rs) // // This example demonstrates clap's building from YAML style of creating arguments which is far // more clean, but takes a very small performance hit compared to the other two methods. use clap::{App, loadyaml};

fn main() { // The YAML file is found relative to the current file, similar to how modules are found let yaml = loadyaml!("cli.yaml"); let matches = App::from(yaml).getmatches();

// Same as previous examples...

} ```

Using Macros

Finally there is a macro version, which is like a hybrid approach offering the speed of the builder pattern (the first example), but without all the verbosity.

```rust,norun use clap::clapapp;

fn main() { let matches = clapapp!(myapp => (version: "1.0") (author: "Kevin K. kbknapp@gmail.com") (about: "Does awesome things") (@arg CONFIG: -c --config +takesvalue "Sets a custom config file") (@arg INPUT: +required "Sets the input file to use") (@arg verbose: -v --verbose "Print test information verbosely") (@subcommand test => (about: "controls testing features") (version: "1.3") (author: "Someone E. someone_else@other.com") (@arg debug: -d ... "Sets the level of debugging information") ) ).get_matches();

// Same as previous examples...

} ```

Running it

If you were to compile any of the above programs and run them with the flag --help or -h (or help subcommand, since we defined test as a subcommand) the following would be output (except the first example where the help message sort of explains the Rust code).

```bash $ myprog --help My Super Program 1.0 Kevin K. kbknapp@gmail.com Does awesome things

ARGS: INPUT The input file to use

USAGE: MyApp [FLAGS] [OPTIONS] [SUBCOMMAND]

FLAGS: -h, --help Print help information -v Sets the level of verbosity -V, --version Print version information

OPTIONS: -c, --config Sets a custom config file

SUBCOMMANDS: help Print this message or the help of the given subcommand(s) test Controls testing features ```

NOTE: You could also run myapp test --help or myapp help test to see the help message for the test subcommand.

Try it!

Pre-Built Test

To try out the pre-built examples, use the following steps:

Build Your Own Binary

To test out clap's default auto-generated help/version follow these steps: * Create a new cargo project $ cargo new fake --bin && cd fake * Write your program as described in the quick example section. * Build your program $ cargo build --release * Run with help or version $ ./target/release/fake --help or $ ./target/release/fake --version

Usage

For full usage, add clap as a dependency in your Cargo.toml to use from crates.io:

toml [dependencies] clap = "3.0.0-beta.4"

Define a list of valid arguments for your program (see the documentation or examples directory of this repo)

Then run cargo build or cargo update && cargo build for your project.

Optional Dependencies / Features

Disabling optional features can decrease the binary size of clap and decrease the compile time. If binary size or compile times are extremely important to you, it is a good idea to disable the feautres that you are not using.

Features enabled by default

To disable these, add this to your Cargo.toml:

toml [dependencies.clap] version = "3.0.0-beta.4" default-features = false features = ["std"]

You can also selectively enable only the features you'd like to include, by adding:

```toml [dependencies.clap] version = "3.0.0-beta.4" default-features = false

Cherry-pick the features you'd like to use

features = ["std", "suggestions", "color"] ```

Opt-in features

More Information

You can find complete documentation on the docs.rs for this project.

You can also find usage examples in the examples directory of this repo.

Sponsors

Gold

Silver

Bronze

Backer

Contributing

Details on how to contribute can be found in the CONTRIBUTING.md file.

Compatibility Policy

Because clap takes SemVer and compatibility seriously, this is the official policy regarding breaking changes and minimum required versions of Rust.

clap will pin the minimum required version of Rust to the CI builds. Bumping the minimum version of Rust is considered a minor breaking change, meaning at a minimum the minor version of clap will be bumped.

In order to keep from being surprised of breaking changes, it is highly recommended to use the ~major.minor.patch style in your Cargo.toml only if you wish to target a version of Rust that is older than current stable minus two releases:

toml [dependencies] clap = "~3.0.0-beta.4"

This will cause only the patch version to be updated upon a cargo update call, and therefore cannot break due to new features, or bumped minimum versions of Rust.

Minimum Supported Version of Rust (MSRV)

The following is a list of the minimum required version of Rust to compile clap by our MAJOR.MINOR version number:

| clap | MSRV | | :----: | :----: | | >=3.0 | 1.54.0 | | >=2.21 | 1.24.0 | | >=2.2 | 1.12.0 | | >=2.1 | 1.6.0 | | >=1.5 | 1.4.0 | | >=1.4 | 1.2.0 | | >=1.2 | 1.1.0 | | >=1.0 | 1.0.0 |

Breaking Changes

clap takes a similar policy to Rust and will bump the major version number upon breaking changes with only the following exceptions:

License

clap is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See the LICENSE-APACHE and LICENSE-MIT files in this repository for more information.

Related Crates

There are several excellent crates which can be used with clap, I recommend checking them all out! If you've got a crate that would be a good fit to be used with clap open an issue and let me know, I'd love to add it!