From e4e785b567eb975c5fa6900b08728aac856bdaad Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 10 Jul 2020 13:47:56 -0700 Subject: [PATCH] Remove unused flags from tags CLI command --- cli/src/main.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index d7a5e7b1..713bf28f 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -90,13 +90,6 @@ fn run() -> error::Result<()> { ) .subcommand( SubCommand::with_name("tags") - .arg( - Arg::with_name("format") - .short("f") - .long("format") - .value_name("json|protobuf") - .help("Determine output format (default: json)"), - ) .arg(Arg::with_name("quiet").long("quiet").short("q")) .arg(Arg::with_name("time").long("quiet").short("t")) .arg(Arg::with_name("scope").long("scope").takes_value(true)) @@ -106,12 +99,6 @@ fn run() -> error::Result<()> { .index(1) .required(true) .multiple(true), - ) - .arg( - Arg::with_name("v") - .short("v") - .multiple(true) - .help("Sets the level of verbosity"), ), ) .subcommand(