diff --git a/Cargo.lock b/Cargo.lock index a7d4ed0651..be08d7b11e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4374,9 +4374,9 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" [[package]] name = "structopt" -version = "0.3.22" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69b041cdcb67226aca307e6e7be44c8806423d83e018bd662360a93dabce4d71" +checksum = "bf9d950ef167e25e0bdb073cf1d68e9ad2795ac826f2f3f59647817cf23c0bfa" dependencies = [ "clap", "lazy_static", @@ -4385,9 +4385,9 @@ dependencies = [ [[package]] name = "structopt-derive" -version = "0.4.15" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7813934aecf5f51a54775e00068c237de98489463968231a51746bbbc03f9c10" +checksum = "134d838a2c9943ac3125cf6df165eda53493451b719f3255b2a26b85f772d0ba" dependencies = [ "heck", "proc-macro-error", diff --git a/Cargo.toml b/Cargo.toml index ed6d87ed6e..41ca27ccc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -142,7 +142,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.67" serde_urlencoded = "0.7.0" snafu = "0.6.9" -structopt = "0.3.21" +structopt = "0.3.23" thiserror = "1.0.28" tikv-jemalloc-ctl = { version = "0.4.0" } tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "parking_lot", "signal"] } diff --git a/trace_exporters/Cargo.toml b/trace_exporters/Cargo.toml index b14fde58c9..6e6d90aa04 100644 --- a/trace_exporters/Cargo.toml +++ b/trace_exporters/Cargo.toml @@ -14,7 +14,7 @@ observability_deps = { path = "../observability_deps" } opentelemetry = { version = "0.16", features = ["rt-tokio"] } opentelemetry-jaeger = { version = "0.15", optional = true, features = ["rt-tokio"] } snafu = "0.6" -structopt = { version = "0.3.21" } +structopt = { version = "0.3.23" } tokio = { version = "1.0", features = ["macros", "time", "sync", "rt"] } tokio-util = { version = "0.6.3" } trace = { path = "../trace" } diff --git a/trogging/Cargo.toml b/trogging/Cargo.toml index 45b85e4d96..b25997ad8e 100644 --- a/trogging/Cargo.toml +++ b/trogging/Cargo.toml @@ -13,7 +13,7 @@ observability_deps = { path = "../observability_deps" } thiserror = "1.0.28" tracing-log = "0.1" tracing-subscriber = "0.2" -structopt = { version = "0.3.21", optional = true } +structopt = { version = "0.3.23", optional = true } [dev-dependencies] synchronized-writer = "1"