| Crates.io | clap2-verbosity-flag |
| lib.rs | clap2-verbosity-flag |
| version | 2.0.0 |
| created_at | 2023-01-13 19:13:54.039275+00 |
| updated_at | 2023-01-13 19:13:54.039275+00 |
| description | Easily add a `--verbose` flag to CLIs using Structopt |
| homepage | |
| repository | https://github.com/rust-clique/clap-verbosity-flag |
| max_upload_size | |
| id | 758119 |
| size | 37,120 |
logEasily add a --verbose flag to CLIs using clap
use clap::Parser;
// ...
#[derive(Debug, Parser)]
struct Cli {
#[clap(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.