20 releases (12 stable)

new 3.0.0 Nov 20, 2024
2.2.3 Nov 16, 2024
2.2.2 Sep 26, 2024
2.2.1 Jul 25, 2024
0.1.0 May 29, 2018

#13 in Command-line interface

Download history 28401/week @ 2024-08-04 31332/week @ 2024-08-11 32841/week @ 2024-08-18 32554/week @ 2024-08-25 35335/week @ 2024-09-01 32406/week @ 2024-09-08 37693/week @ 2024-09-15 39616/week @ 2024-09-22 43531/week @ 2024-09-29 46370/week @ 2024-10-06 44664/week @ 2024-10-13 46240/week @ 2024-10-20 42391/week @ 2024-10-27 43348/week @ 2024-11-03 45432/week @ 2024-11-10 42074/week @ 2024-11-17

176,441 downloads per month
Used in 373 crates (301 directly)

MIT/Apache

30KB
461 lines

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 {
    #[command(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.

Dependencies

~1.2–1.8MB
~34K SLoC