From 8c773ea7aa251a9760a5349a93c6683db6667e26 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 22 Jun 2026 10:36:48 -0600 Subject: [PATCH] elliptic-curve: bump `crypto-bigint` to v0.7.5 --- Cargo.lock | 5 +++-- Cargo.toml | 2 -- elliptic-curve/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a3ba8e06b..f498d7a92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,8 +141,9 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.7.4" -source = "git+https://github.com/RustCrypto/crypto-bigint#ec6615fad09d26f8518378f1fdfe96a635ddab2d" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271" dependencies = [ "cpubits", "ctutils", diff --git a/Cargo.toml b/Cargo.toml index 90dd21ad4..79c85b5b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,5 +57,3 @@ unused_qualifications = "warn" crypto-common = { path = "crypto-common" } digest = { path = "digest" } signature = { path = "signature" } - -crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint" } diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 48b65101e..c47403731 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -17,7 +17,7 @@ representing various elliptic curve forms, scalars, points, and public/secret ke [dependencies] array = { package = "hybrid-array", version = "0.4", default-features = false, features = ["zeroize"] } -bigint = { package = "crypto-bigint", version = "0.7.4", default-features = false, features = ["hybrid-array", "rand_core", "subtle", "zeroize"] } +bigint = { package = "crypto-bigint", version = "0.7.5", default-features = false, features = ["hybrid-array", "rand_core", "subtle", "zeroize"] } base16ct = "1" common = { package = "crypto-common", version = "0.2", features = ["rand_core"] } rand_core = { version = "0.10", default-features = false }