diff options
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index eea32c8..b45356c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -48,13 +48,12 @@ const VERSION: &str = concat!( about = "Batch operations for AWS Cognito user pools", version = VERSION, author, - propagate_version = true )] struct Cli { /// Increase verbosity (use -v, -vv, ...). /// /// When no RUST_LOG is set, a single -v switches the log level to DEBUG. - #[arg(short, long, global = true, action = ArgAction::Count)] + #[arg(short, long, action = ArgAction::Count)] verbose: u8, #[command(subcommand)] |