Crates.io | clap-verbosity-flag |
lib.rs | clap-verbosity-flag |
version | 2.2.2 |
source | src |
created_at | 2018-05-29 08:42:42.268362 |
updated_at | 2024-09-26 18:13:05.114194 |
description | Easily add a `--verbose` flag to CLIs using Clap |
homepage | |
repository | https://github.com/clap-rs/clap-verbosity-flag |
max_upload_size | |
id | 67572 |
size | 44,217 |
log
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.