From 41edbafeca0ecaf8076232e4b87a5564540bd2e3 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 5 Aug 2025 21:30:21 -0600 Subject: [PATCH] ecdsa: bump `elliptic-curve` to v0.14.0-rc.12 (#1034) --- Cargo.lock | 5 +++-- Cargo.toml | 2 -- ecdsa/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 633c381..629469b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -409,8 +409,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "elliptic-curve" -version = "0.14.0-rc.11" -source = "git+https://github.com/RustCrypto/traits#526970708925a6030483d55fb00e62a9781505b4" +version = "0.14.0-rc.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02a716b7c32bccdb9c70c78ecdc1e4188f2a76d3ee7d98f404e26b3be8550861" dependencies = [ "base16ct", "crypto-bigint", diff --git a/Cargo.toml b/Cargo.toml index 8a740cf..79c5444 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,8 +15,6 @@ members = [ opt-level = 2 [patch.crates-io] -elliptic-curve = { git = "https://github.com/RustCrypto/traits" } - # A global patch crates-io block is used to avoid duplicate dependencies # when pulling a member crate through git dsa = { path = "./dsa" } diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 28ec0bf..9a4083e 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -17,7 +17,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -elliptic-curve = { version = "0.14.0-rc.10", default-features = false, features = ["sec1"] } +elliptic-curve = { version = "0.14.0-rc.12", default-features = false, features = ["sec1"] } signature = { version = "3.0.0-rc.2", default-features = false, features = ["rand_core"] } zeroize = { version = "1.5", default-features = false } @@ -30,7 +30,7 @@ sha2 = { version = "0.11.0-rc.0", optional = true, default-features = false, fea spki = { version = "0.8.0-rc.4", optional = true, default-features = false } [dev-dependencies] -elliptic-curve = { version = "0.14.0-rc.10", default-features = false, features = ["dev"] } +elliptic-curve = { version = "0.14.0-rc.12", default-features = false, features = ["dev"] } hex-literal = "1" sha2 = { version = "0.11.0-rc.0", default-features = false }