From 444c5b858c096ccfedb1fbf6bf10d72255eb961e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 19:50:35 +0000 Subject: [PATCH 1/2] Bump quickcheck from 1.0.3 to 1.1.0 Bumps [quickcheck](https://github.com/BurntSushi/quickcheck) from 1.0.3 to 1.1.0. - [Commits](https://github.com/BurntSushi/quickcheck/compare/1.0.3...quickcheck_macros-1.1.0) --- updated-dependencies: - dependency-name: quickcheck dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e4fcec154..3f592528e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1859,6 +1859,7 @@ dependencies = [ "cfg-if", "libc", "r-efi", + "rand_core 0.10.0", "wasip2", "wasip3", ] @@ -4158,11 +4159,11 @@ checksum = "9318ead08c799aad12a55a3e78b82e0b6167271ffd1f627b758891282f739187" [[package]] name = "quickcheck" -version = "1.0.3" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6" +checksum = "95c589f335db0f6aaa168a7cd27b1fc6920f5e1470c804f814d9cd6e62a0f70b" dependencies = [ - "rand 0.8.5", + "rand 0.10.0", ] [[package]] @@ -4273,6 +4274,16 @@ dependencies = [ "rand_core 0.9.5", ] +[[package]] +name = "rand" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" +dependencies = [ + "getrandom 0.4.1", + "rand_core 0.10.0", +] + [[package]] name = "rand_chacha" version = "0.3.1" @@ -4311,6 +4322,12 @@ dependencies = [ "getrandom 0.3.4", ] +[[package]] +name = "rand_core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" + [[package]] name = "rayon" version = "1.11.0" diff --git a/Cargo.toml b/Cargo.toml index 10ebb3551..80fdc8728 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ pretty_assertions = "1.4.1" prio = { version = "0.16.8", default-features = false, features = ["experimental"] } prometheus = "0.13.4" querystring = "1.1.0" -quickcheck = { version = "1.0.3", default-features = false } +quickcheck = { version = "1.1.0", default-features = false } quickcheck_macros = "1.2.0" rand = "0.8" rayon = "1.11.0" From c9194cd3d9e6a420303f97edaf6fa7afe17e7411 Mon Sep 17 00:00:00 2001 From: Tim Geoghegan Date: Tue, 17 Feb 2026 19:17:57 -0800 Subject: [PATCH 2/2] fix deprecated method usage --- integration_tests/tests/integration/simulation/quicktest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/tests/integration/simulation/quicktest.rs b/integration_tests/tests/integration/simulation/quicktest.rs index f5eef5965..f218e6234 100644 --- a/integration_tests/tests/integration/simulation/quicktest.rs +++ b/integration_tests/tests/integration/simulation/quicktest.rs @@ -116,5 +116,5 @@ fn new_quick_check() -> QuickCheck { .ok() .and_then(|arg| arg.parse().ok()) .unwrap_or(400); - quick_check.gen(Gen::new(gen_size)) + quick_check.rng(Gen::new(gen_size)) }