From 82a4d2c794397ec702fdb6754743afa779c46bed Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 10 Mar 2026 11:06:48 -0600 Subject: [PATCH] Bump `crypto-primes` dependency to v0.7 release --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75800cc4..4fe3a6b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -184,9 +184,9 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f438b626cb7c9dd48a613a9826e6bad9db71097f9d628f7237af2f6bc13c0ec" +checksum = "9fde2467e74147f492aebb834985186b2c74761927b8b9b3bd303bcb2e72199d" dependencies = [ "cpubits", "ctutils", @@ -210,9 +210,9 @@ dependencies = [ [[package]] name = "crypto-primes" -version = "0.7.0-pre.9" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6081ce8b60c0e533e2bba42771b94eb6149052115f4179744d5779883dc98583" +checksum = "21f41f23de7d24cdbda7f0c4d9c0351f99a4ceb258ef30e5c1927af8987ffe5a" dependencies = [ "crypto-bigint", "libm", diff --git a/Cargo.toml b/Cargo.toml index 85f3b125..aaab2c9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ exclude = ["marvin_toolkit/", "thirdparty/"] [dependencies] const-oid = { version = "0.10", default-features = false } crypto-bigint = { version = "0.7", default-features = false, features = ["zeroize", "alloc"] } -crypto-primes = { version = "0.7.0-pre.9", default-features = false } +crypto-primes = { version = "0.7", default-features = false } digest = { version = "0.11", default-features = false, features = ["alloc", "oid"] } rand_core = { version = "0.10", default-features = false } signature = { version = "3.0.0-rc.10", default-features = false, features = ["alloc", "digest", "rand_core"] }