mirror of
https://github.com/saymrwulf/anza-cryptography-source.git
synced 2026-09-04 20:24:04 +00:00
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] <support@github.com>
This commit is contained in:
parent
77043ab804
commit
8ed39074ca
2 changed files with 16 additions and 8 deletions
22
Cargo.lock
generated
22
Cargo.lock
generated
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue