From 8ed39074ca78b9cedfb6ffd91afd6d89b2beebd9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 15:47:00 +0000 Subject: [PATCH] Bump proptest from 1.6.0 to 1.11.0 Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.6.0 to 1.11.0. - [Release notes](https://github.com/proptest-rs/proptest/releases) - [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md) - [Commits](https://github.com/proptest-rs/proptest/compare/v1.6.0...v1.11.0) --- updated-dependencies: - dependency-name: proptest dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 533eb7d..9e07c0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -916,7 +916,7 @@ dependencies = [ "ff", "rand 0.8.6", "rand_core 0.6.4", - "rand_xorshift", + "rand_xorshift 0.3.0", "subtle", ] @@ -1592,18 +1592,17 @@ dependencies = [ [[package]] name = "proptest" -version = "1.6.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" +checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744" dependencies = [ "bit-set", "bit-vec", "bitflags", - "lazy_static", "num-traits", - "rand 0.8.6", - "rand_chacha 0.3.1", - "rand_xorshift", + "rand 0.9.4", + "rand_chacha 0.9.0", + "rand_xorshift 0.4.0", "regex-syntax", "rusty-fork", "tempfile", @@ -1711,6 +1710,15 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_xorshift" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" +dependencies = [ + "rand_core 0.9.5", +] + [[package]] name = "rayon" version = "1.12.0" diff --git a/Cargo.toml b/Cargo.toml index 06b778f..68e4b60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ pairing = "0.23.0" p256 = { version = "0.13", default-features = false, features = ["arithmetic", "expose-field"] } pkcs8 = { version = "0.10.1" } once_cell = "1.21" -proptest = "=1.6.0" +proptest = "=1.11.0" rand = "0.8" rand_core = { version = "0.6", default-features = false } rayon = "1.10"