From c9f000e1b77787edbdcac947b18345b410618d99 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 12 Sep 2025 18:32:41 -0600 Subject: [PATCH] dsa: bump `crypto-bigint` to v0.7.0-rc.5 --- Cargo.lock | 8 ++++---- dsa/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68d4bbea..b868ff3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -261,9 +261,9 @@ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929" [[package]] name = "crypto-bigint" -version = "0.7.0-rc.4" +version = "0.7.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c069823f41bdc75e99546bfd59eb1ed27d69dc720e5c949fe502b82926f8448" +checksum = "19f2e3541e47d5e2c984b2832e8633b1443671eebba61f0d05e4d2bafba16b23" dependencies = [ "hybrid-array", "num-traits", @@ -284,9 +284,9 @@ dependencies = [ [[package]] name = "crypto-primes" -version = "0.7.0-pre.1" +version = "0.7.0-pre.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae744b9f528151f8c440cf67498f24d2d1ac0ab536b5ce7b1f87a7a5961bd1c1" +checksum = "6ad2e4e276b4f3cc222e2724cc94e147008ee0e4481c7a220c79e2ec3bdd2bba" dependencies = [ "crypto-bigint", "libm", diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index 849c3304..d843030a 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -18,8 +18,8 @@ rust-version = "1.85" [dependencies] der = { version = "0.8.0-rc.8", features = ["alloc"] } digest = "0.11.0-rc.1" -crypto-bigint = { version = "0.7.0-rc.4", default-features = false, features = ["alloc", "zeroize"] } -crypto-primes = { version = "0.7.0-pre.1", default-features = false } +crypto-bigint = { version = "0.7.0-rc.5", default-features = false, features = ["alloc", "zeroize"] } +crypto-primes = { version = "0.7.0-pre.2", default-features = false } rfc6979 = { version = "0.5.0-rc.1" } sha2 = { version = "0.11.0-rc.2", default-features = false } signature = { version = "3.0.0-rc.3", default-features = false, features = ["alloc", "digest", "rand_core"] }