clap2-verbosity-flag

Crates.ioclap2-verbosity-flag
lib.rsclap2-verbosity-flag
version2.0.0
sourcesrc
created_at2023-01-13 19:13:54.039275
updated_at2023-01-13 19:13:54.039275
descriptionEasily add a `--verbose` flag to CLIs using Structopt
homepage
repositoryhttps://github.com/rust-clique/clap-verbosity-flag
max_upload_size
id758119
size37,120
Alex Saveau (SUPERCILEX)

documentation

README

clap-verbosity-flag for log

Documentation License crates.io

Easily add a --verbose flag to CLIs using clap

Examples

use clap::Parser;

// ...
#[derive(Debug, Parser)]
struct Cli {
    #[clap(flatten)]
    verbose: clap_verbosity_flag::Verbosity,
}

By default, it'll only report errors.

  • -q silences output
  • -v show warnings
  • -vv show info
  • -vvv show debug
  • -vvvv show trace

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 160

cargo fmt