From 097b62fb84321cbaa72f372ddf40122811299f01 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 9 Mar 2026 10:00:56 -0600 Subject: [PATCH] dsa: bump `crypto-bigint` to v0.7 final release Release PR: RustCrypto/crypto-bigint#1218 --- Cargo.lock | 6 +++--- dsa/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c6fc237c..5a3da38d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -334,9 +334,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" [[package]] name = "crypto-bigint" -version = "0.7.0-rc.28" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96dacf199529fb801ae62a9aafdc01b189e9504c0d1ee1512a4c16bcd8666a93" +checksum = "4f438b626cb7c9dd48a613a9826e6bad9db71097f9d628f7237af2f6bc13c0ec" dependencies = [ "cpubits", "ctutils", @@ -1508,7 +1508,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0" dependencies = [ "fastrand", - "getrandom 0.3.4", + "getrandom 0.4.1", "once_cell", "rustix", "windows-sys", diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index aa00a543..d1e8734e 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -18,7 +18,7 @@ rust-version = "1.85" [dependencies] der = { version = "0.8", features = ["alloc"] } digest = "0.11" -crypto-bigint = { version = "0.7.0-rc.28", default-features = false, features = ["alloc", "zeroize"] } +crypto-bigint = { version = "0.7", default-features = false, features = ["alloc", "zeroize"] } crypto-primes = { version = "0.7.0-pre.9", default-features = false } rfc6979 = { version = "0.5.0-rc.5" } sha2 = { version = "0.11.0-rc.5", default-features = false }