From 88c16295e5170f1282df15f81addc0964957c6bc Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Sat, 11 Nov 2023 05:10:33 +0000 Subject: [PATCH] Update Rust crate proptest to 1.4.0 --- Cargo.lock | 12 +++--------- nextest-filtering/Cargo.toml | 4 ++-- nextest-runner/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3f698decce..132c31e8539 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2063,9 +2063,9 @@ dependencies = [ [[package]] name = "proptest" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c003ac8c77cb07bb74f5f198bce836a689bcd5a42574612bf14d17bfd08c20e" +checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" dependencies = [ "bit-set", "bit-vec", @@ -2075,7 +2075,7 @@ dependencies = [ "rand", "rand_chacha", "rand_xorshift", - "regex-syntax 0.7.5", + "regex-syntax 0.8.2", "rusty-fork", "tempfile", "unarray", @@ -2264,12 +2264,6 @@ version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" -[[package]] -name = "regex-syntax" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" - [[package]] name = "regex-syntax" version = "0.8.2" diff --git a/nextest-filtering/Cargo.toml b/nextest-filtering/Cargo.toml index 9d37a74f0ac..d2290eb46a0 100644 --- a/nextest-filtering/Cargo.toml +++ b/nextest-filtering/Cargo.toml @@ -36,7 +36,7 @@ regex = "1.10.2" regex-syntax = "0.8.2" thiserror = "1.0.50" nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } -proptest = { version = "1.3.1", optional = true } +proptest = { version = "1.4.0", optional = true } test-strategy = { version = "0.3.1", optional = true } twox-hash = { version = "1.6.3", optional = true } @@ -44,5 +44,5 @@ twox-hash = { version = "1.6.3", optional = true } clap = { version = "4.4.8", features = ["derive"] } camino = "1.1.6" test-case = "3.2.1" -proptest = { version = "1.3.1" } +proptest = { version = "1.4.0" } test-strategy = { version = "0.3.1" } diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index b7212e56bb2..82fa98d900b 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -134,7 +134,7 @@ indoc = "2.0.4" maplit = "1.0.2" pathdiff = { version = "0.2.1", features = ["camino"] } pretty_assertions = "1.4.0" -proptest = "1.3.1" +proptest = "1.4.0" proptest-derive = "0.4.0" test-case = "3.2.1"