From 2cfff406ec69426b41d666d8e99e47e13fed9e34 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 20 Oct 2025 14:34:48 -0600 Subject: [PATCH] elliptic-curve v0.14.0-rc.16 --- Cargo.lock | 6 +++--- elliptic-curve/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cd301340..44f09517 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -136,9 +136,9 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.7.0-rc.8" +version = "0.7.0-rc.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4113edbc9f68c0a64d5b911f803eb245d04bb812680fd56776411f69c670f3e0" +checksum = "7f4b0fda9462026d53a3ef37c5ec283639ee8494a1a5401109c0e2a3fb4d490c" dependencies = [ "hybrid-array", "num-traits", @@ -180,7 +180,7 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.14.0-rc.15" +version = "0.14.0-rc.16" dependencies = [ "base16ct", "crypto-bigint", diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index f72ebb5b..e6ee9fb6 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elliptic-curve" -version = "0.14.0-rc.15" +version = "0.14.0-rc.16" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" @@ -18,7 +18,7 @@ and public/secret keys composed thereof. [dependencies] base16ct = "0.3" -crypto-bigint = { version = "0.7.0-rc.8", default-features = false, features = ["rand_core", "hybrid-array", "zeroize"] } +crypto-bigint = { version = "0.7.0-rc.9", default-features = false, features = ["rand_core", "hybrid-array", "zeroize"] } hybrid-array = { version = "0.4", default-features = false, features = ["zeroize"] } rand_core = { version = "0.9.0", default-features = false } subtle = { version = "2.6", default-features = false }