From 0267c05350f29d278b7374a005a4e34c7be92e65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:14:00 +0000 Subject: [PATCH] build(deps): bump proptest from 1.5.0 to 1.6.0 Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.5.0 to 1.6.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/commits) --- updated-dependencies: - dependency-name: proptest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 ++++++------------- k256/Cargo.toml | 2 +- p384/Cargo.toml | 2 +- p521/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f4830856..4307d6d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,18 +81,18 @@ dependencies = [ [[package]] name = "bit-set" -version = "0.5.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" dependencies = [ "bit-vec", ] [[package]] name = "bit-vec" -version = "0.6.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" [[package]] name = "bitflags" @@ -598,12 +598,6 @@ version = "0.2.159" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" -[[package]] -name = "libm" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" - [[package]] name = "linux-raw-sys" version = "0.4.14" @@ -648,7 +642,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", - "libm", ] [[package]] @@ -828,9 +821,9 @@ dependencies = [ [[package]] name = "proptest" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bit-set", "bit-vec", diff --git a/k256/Cargo.toml b/k256/Cargo.toml index d0ebc81f..7df409d5 100644 --- a/k256/Cargo.toml +++ b/k256/Cargo.toml @@ -38,7 +38,7 @@ hex = "0.4.3" hex-literal = "0.4" num-bigint = "0.4" num-traits = "0.2" -proptest = "1.5" +proptest = "1.6" rand_core = { version = "0.6", features = ["getrandom"] } sha3 = { version = "=0.11.0-pre.4", default-features = false } diff --git a/p384/Cargo.toml b/p384/Cargo.toml index ba1ad4d2..1d07fc85 100644 --- a/p384/Cargo.toml +++ b/p384/Cargo.toml @@ -33,7 +33,7 @@ criterion = "0.5" ecdsa-core = { version = "=0.17.0-pre.9", package = "ecdsa", default-features = false, features = ["dev"] } hex-literal = "0.4" primeorder = { version = "=0.14.0-pre.2", features = ["dev"], path = "../primeorder" } -proptest = "1.5" +proptest = "1.6" rand_core = { version = "0.6", features = ["getrandom"] } [features] diff --git a/p521/Cargo.toml b/p521/Cargo.toml index 8af4f488..6402f941 100644 --- a/p521/Cargo.toml +++ b/p521/Cargo.toml @@ -34,7 +34,7 @@ blobby = "0.3" ecdsa-core = { version = "=0.17.0-pre.9", package = "ecdsa", default-features = false, features = ["dev"] } hex-literal = "0.4" primeorder = { version = "=0.14.0-pre.2", features = ["dev"], path = "../primeorder" } -proptest = "1.5" +proptest = "1.6" rand_core = { version = "0.6", features = ["getrandom"] } criterion = "0.5.1"