From 987041af7d6ebabae7abae7d3853a0d0af8e72ad Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 23 Jun 2026 12:04:26 -0600 Subject: [PATCH] ecdsa: bump `elliptic-curve` to v0.14 Release PR: RustCrypto/traits#2466 Also cuts an `ecdsa` v0.17.0-rc.22 prerelease --- Cargo.lock | 8 ++++---- ecdsa/Cargo.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8e037b1..72261d75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -457,7 +457,7 @@ dependencies = [ [[package]] name = "ecdsa" -version = "0.17.0-rc.21" +version = "0.17.0-rc.22" dependencies = [ "der", "digest", @@ -504,9 +504,9 @@ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" [[package]] name = "elliptic-curve" -version = "0.14.0-rc.36" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abda41bf4d801bd9bfe2ef26ab37ae40d8c703374985b5c642e141d23de3f556" +checksum = "3273f1195b6f6253ebda493d6742c8baa9b26a291674cd96d92a0f09e90e9b46" dependencies = [ "base16ct", "crypto-bigint", @@ -1478,7 +1478,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.4.2", + "getrandom 0.3.4", "once_cell", "rustix", "windows-sys", diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index ad5c00c1..9292220f 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.17.0-rc.21" +version = "0.17.0-rc.22" description = """ Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing @@ -17,7 +17,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -elliptic-curve = { version = "0.14.0-rc.36", default-features = false, features = ["sec1"] } +elliptic-curve = { version = "0.14", default-features = false, features = ["sec1"] } signature = { version = "3", default-features = false, features = ["rand_core"] } zeroize = { version = "1.5", default-features = false } @@ -30,7 +30,7 @@ sha2 = { version = "0.11", optional = true, default-features = false, features = spki = { version = "0.8", optional = true, default-features = false } [dev-dependencies] -elliptic-curve = { version = "0.14.0-rc.36", default-features = false, features = ["dev"] } +elliptic-curve = { version = "0.14", default-features = false, features = ["dev"] } hex-literal = "1" sha2 = { version = "0.11", default-features = false }