diff --git a/crates/lib/src/main.rs b/crates/lib/src/main.rs index b511652b..8e1ea5ad 100644 --- a/crates/lib/src/main.rs +++ b/crates/lib/src/main.rs @@ -168,12 +168,14 @@ fn cli() -> Command { .arg( Arg::new("NO_COLOR") .short('c') + .action(ArgAction::SetTrue) .long("no-color") .hide(true) .help("Whether to use terminal colors for messages.") ) .arg( Arg::new("VERBOSE") + .action(ArgAction::SetTrue) .long("verbose") .hide(true) .help("Print all deprecation warnings even when they're repetitive.")