22 releases (14 stable)

3.0.2 Dec 16, 2024
3.0.1 Nov 26, 2024
2.2.3 Nov 16, 2024
2.2.1 Jul 25, 2024
0.1.0 May 29, 2018

#13 in Command-line interface

Download history 42205/week @ 2024-09-25 44126/week @ 2024-10-02 44075/week @ 2024-10-09 46684/week @ 2024-10-16 45877/week @ 2024-10-23 41605/week @ 2024-10-30 43050/week @ 2024-11-06 46509/week @ 2024-11-13 46782/week @ 2024-11-20 42262/week @ 2024-11-27 46404/week @ 2024-12-04 48022/week @ 2024-12-11 33141/week @ 2024-12-18 19505/week @ 2024-12-25 31391/week @ 2025-01-01 39315/week @ 2025-01-08

131,254 downloads per month
Used in 384 crates (313 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.1–1.8MB
~34K SLoC