chore: Remove required bytes dep and clean up deny (#227)
* chore: Remove required bytes dep and clean up deny * Fix interop test cli args
This commit is contained in:
+1
-1
@@ -28,7 +28,7 @@ tower = "0.3"
|
||||
http-body = "0.3"
|
||||
|
||||
console = "0.9"
|
||||
structopt = "0.2"
|
||||
structopt = "0.3"
|
||||
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.2.0-alpha"
|
||||
|
||||
@@ -6,16 +6,16 @@ use tonic_interop::client;
|
||||
|
||||
#[derive(StructOpt)]
|
||||
struct Opts {
|
||||
#[structopt(name = "use_tls", long)]
|
||||
use_tls: bool,
|
||||
|
||||
#[structopt(
|
||||
long = "test_case",
|
||||
use_delimiter = true,
|
||||
min_values = 1,
|
||||
raw(possible_values = r#"&Testcase::variants()"#)
|
||||
possible_values = &Testcase::variants()
|
||||
)]
|
||||
test_case: Vec<Testcase>,
|
||||
|
||||
#[structopt(long)]
|
||||
use_tls: bool,
|
||||
}
|
||||
|
||||
#[tokio::main]
|
||||
|
||||
@@ -8,7 +8,7 @@ use tonic_interop::{server, MergeTrailers};
|
||||
|
||||
#[derive(StructOpt)]
|
||||
struct Opts {
|
||||
#[structopt(long)]
|
||||
#[structopt(name = "use_tls", long)]
|
||||
use_tls: bool,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user