From 3799a09b4e41f8eb2b68ab14d8bb1d9937f57a02 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Sat, 11 Nov 2023 04:14:36 +0000 Subject: [PATCH] Update Rust crate clap to 4.4.8 --- Cargo.lock | 8 ++++---- cargo-nextest/Cargo.toml | 2 +- integration-tests/Cargo.toml | 2 +- nextest-filtering/Cargo.toml | 2 +- workspace-hack/Cargo.toml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 074524d1e11..ee97e4c1302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -455,9 +455,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.7" +version = "4.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" +checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" dependencies = [ "clap_builder", "clap_derive", @@ -465,9 +465,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.7" +version = "4.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" +checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" dependencies = [ "anstream", "anstyle", diff --git a/cargo-nextest/Cargo.toml b/cargo-nextest/Cargo.toml index 3fb05fadb6b..e1f9a168315 100644 --- a/cargo-nextest/Cargo.toml +++ b/cargo-nextest/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.70" [dependencies] camino = "1.1.6" cfg-if = "1.0.0" -clap = { version = "4.4.7", features = ["derive", "env"] } +clap = { version = "4.4.8", features = ["derive", "env"] } # we don't use the tracing support color-eyre = { version = "0.6.2", default-features = false } dialoguer = "0.11.0" diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index c97da203999..3ff778f7670 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -13,7 +13,7 @@ path = "test-helpers/cargo-nextest-dup.rs" cargo-nextest = { path = "../cargo-nextest" } # we don't use the tracing support color-eyre = { version = "0.6.2", default-features = false } -clap = { version = "4.4.7", features = ["derive", "env"] } +clap = { version = "4.4.8", features = ["derive", "env"] } enable-ansi-support = "0.2.1" nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/nextest-filtering/Cargo.toml b/nextest-filtering/Cargo.toml index 32704acffdf..9d37a74f0ac 100644 --- a/nextest-filtering/Cargo.toml +++ b/nextest-filtering/Cargo.toml @@ -41,7 +41,7 @@ test-strategy = { version = "0.3.1", optional = true } twox-hash = { version = "1.6.3", optional = true } [dev-dependencies] -clap = { version = "4.4.7", features = ["derive"] } +clap = { version = "4.4.8", features = ["derive"] } camino = "1.1.6" test-case = "3.2.1" proptest = { version = "1.3.1" } diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index a3fbd3a9b26..ee3f1069103 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -16,8 +16,8 @@ publish = false [dependencies] backtrace = { version = "0.3.69", features = ["gimli-symbolize"] } chrono = { version = "0.4.31" } -clap = { version = "4.4.7", features = ["derive", "env"] } -clap_builder = { version = "4.4.7", default-features = false, features = ["color", "env", "help", "std", "suggestions", "usage"] } +clap = { version = "4.4.8", features = ["derive", "env"] } +clap_builder = { version = "4.4.8", default-features = false, features = ["color", "env", "help", "std", "suggestions", "usage"] } console = { version = "0.15.7" } either = { version = "1.9.0" } futures-channel = { version = "0.3.29", features = ["sink"] }