From eccb30eccd05c247f763637b494402fff781256f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 3 Jan 2026 12:43:28 -0700 Subject: [PATCH] Bump `crypto-primes` to v0.7.0-pre.5 --- Cargo.lock | 5 +++-- Cargo.toml | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be8b3862..f0f4ce8d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -188,8 +188,9 @@ dependencies = [ [[package]] name = "crypto-primes" -version = "0.7.0-dev" -source = "git+https://github.com/tarcieri/crypto-primes?branch=crypto-bigint%2Fv0.7.0-rc.13#f98697886371aa15446ca53ef5b9e9e44efbabf8" +version = "0.7.0-pre.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da0b07a7a616370e8b6efca0c6a25e5f4c6d02fde11f3d570e4af64d8ed7e2e9" dependencies = [ "crypto-bigint", "libm", diff --git a/Cargo.toml b/Cargo.toml index 31d7b8f6..5659edcf 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.0-rc.13", default-features = false, features = ["zeroize", "alloc"] } -crypto-primes = { version = "0.7.0-dev", default-features = false } +crypto-primes = { version = "0.7.0-pre.5", default-features = false } digest = { version = "0.11.0-rc.4", default-features = false, features = ["alloc", "oid"] } rand_core = { version = "0.10.0-rc-2", default-features = false } signature = { version = "3.0.0-rc.5", default-features = false, features = ["alloc", "digest", "rand_core"] } @@ -70,5 +70,4 @@ opt-level = 2 debug = true [patch.crates-io] -crypto-primes = { git = "https://github.com/tarcieri/crypto-primes", branch = "crypto-bigint/v0.7.0-rc.13" } rand = { git = "https://github.com/rust-random/rand" }