From 76050fbe412040a6cb239194e7b1f3ef78caba69 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 16 Jun 2025 12:25:42 -0600 Subject: [PATCH] ecdsa: bump `elliptic-curve` to v0.14.0-rc.7 (#999) --- Cargo.lock | 5 +++-- Cargo.toml | 2 -- ecdsa/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cca1ea2..e47c904 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -409,8 +409,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "elliptic-curve" -version = "0.14.0-rc.6" -source = "git+https://github.com/RustCrypto/traits.git#efb7780b086fad4b8d6eaf13f5471d102b162bf7" +version = "0.14.0-rc.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb5fad57f7e416b8f8e81df65daa6a87e402a4469990fd1ba36a8c79515a5fbf" dependencies = [ "base16ct", "crypto-bigint", diff --git a/Cargo.toml b/Cargo.toml index 9dbd621..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.git" } - # 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 991ead7..747aad7 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.6", default-features = false, features = ["sec1"] } +elliptic-curve = { version = "0.14.0-rc.7", default-features = false, features = ["sec1"] } signature = { version = "3.0.0-rc.1", default-features = false, features = ["rand_core"] } zeroize = { version = "1.5", default-features = false }