From fb0c593b35c755b01ecf656fed035453f001bef2 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Wed, 25 Oct 2023 03:14:32 +0000 Subject: [PATCH] Update Rust crate clap to 4.4.7 --- Cargo.lock | 16 ++++++++-------- cargo-nextest/Cargo.toml | 2 +- integration-tests/Cargo.toml | 2 +- nextest-filtering/Cargo.toml | 2 +- workspace-hack/Cargo.toml | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e5cd5306f9..948f3030162 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -455,9 +455,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" +checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" dependencies = [ "clap_builder", "clap_derive", @@ -465,9 +465,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" +checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" dependencies = [ "anstream", "anstyle", @@ -477,9 +477,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.4.2" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" +checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" dependencies = [ "heck", "proc-macro2", @@ -489,9 +489,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" [[package]] name = "color-eyre" diff --git a/cargo-nextest/Cargo.toml b/cargo-nextest/Cargo.toml index 8eb2ac0da5e..cbd3ac1680d 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.6", features = ["derive", "env"] } +clap = { version = "4.4.7", 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 af90dcf0fcc..8ba7dfd2a6d 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.6", features = ["derive", "env"] } +clap = { version = "4.4.7", 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 3ae1b3245db..32704acffdf 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.6", features = ["derive"] } +clap = { version = "4.4.7", 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 1351356d767..13f337a1fa1 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -15,8 +15,8 @@ publish = false ### BEGIN HAKARI SECTION [dependencies] backtrace = { version = "0.3.69", features = ["gimli-symbolize"] } -clap = { version = "4.4.6", features = ["derive", "env"] } -clap_builder = { version = "4.4.6", default-features = false, features = ["color", "env", "help", "std", "suggestions", "usage"] } +clap = { version = "4.4.7", features = ["derive", "env"] } +clap_builder = { version = "4.4.7", 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.28", features = ["sink"] }