21 releases (13 stable)

3.0.1 Nov 26, 2024
2.2.3 Nov 16, 2024
2.2.1 Jul 25, 2024
2.2.0 Feb 14, 2024
0.1.0 May 29, 2018

#13 in Command-line interface

Download history 32652/week @ 2024-08-20 33298/week @ 2024-08-27 35351/week @ 2024-09-03 32728/week @ 2024-09-10 37883/week @ 2024-09-17 39995/week @ 2024-09-24 45206/week @ 2024-10-01 44733/week @ 2024-10-08 45993/week @ 2024-10-15 46540/week @ 2024-10-22 41414/week @ 2024-10-29 43427/week @ 2024-11-05 46456/week @ 2024-11-12 45729/week @ 2024-11-19 42727/week @ 2024-11-26 37708/week @ 2024-12-03

179,887 downloads per month
Used in 376 crates (304 directly)

MIT/Apache

33KB
541 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.9MB
~35K SLoC