From 58278097e0db6904cc99acf51434333ef096554c Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 29 Mar 2026 06:44:24 -0600 Subject: [PATCH] srp: bump `crypto-bigint` to v0.7 Release PR: RustCrypto/crypto-bigint#1218 --- Cargo.lock | 4 ++-- srp/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 70ba46f..fa26820 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,9 +139,9 @@ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" [[package]] name = "crypto-bigint" -version = "0.7.0-rc.26" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8d50190c5aeb459e0c974f7f00c3fe2e770ef18d1abe32adb87ad8d9108f89" +checksum = "42a0d26b245348befa0c121944541476763dcc46ede886c88f9d12e1697d27c3" dependencies = [ "cpubits", "ctutils", diff --git a/srp/Cargo.toml b/srp/Cargo.toml index 4fba14b..67b02c8 100644 --- a/srp/Cargo.toml +++ b/srp/Cargo.toml @@ -17,7 +17,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -bigint = { package = "crypto-bigint", version = "0.7.0-rc.26", features = ["alloc"] } +bigint = { package = "crypto-bigint", version = "0.7", features = ["alloc"] } common = { package = "crypto-common", version = "0.2" } digest = "0.11.0-rc.11" subtle = { version = "2.4", default-features = false }