Crates.io | clap-verbosity |
lib.rs | clap-verbosity |
version | 2.1.0 |
source | src |
created_at | 2023-12-11 12:40:35.73052 |
updated_at | 2023-12-11 12:40:35.73052 |
description | Easily add a `--verbose` flag to CLIs using Clap |
homepage | |
repository | https://github.com/clap-rs/clap-verbosity-flag |
max_upload_size | |
id | 1065125 |
size | 72,350 |
Easily add a --verbose
flag to CLIs using Clap
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 traceLicensed under either of
at your option.
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.