Crates.io | clap-verbosity-flag2 |
lib.rs | clap-verbosity-flag2 |
version | 2.1.1 |
source | src |
created_at | 2023-12-31 02:33:56.311767 |
updated_at | 2023-12-31 02:33:56.311767 |
description | Easily add a `--verbose` flag to CLIs using Clap |
homepage | |
repository | https://github.com/clap-rs/clap-verbosity-flag |
max_upload_size | |
id | 1084530 |
size | 38,508 |
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.