From c2552ff7bec2aaa8b4d8bd80c63bc874bba7aa91 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 13 Jun 2025 19:51:58 -0600 Subject: [PATCH] ecdsa v0.17.0-rc.2 (#997) --- Cargo.lock | 4 ++-- ecdsa/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aaa2e5b..0821ea0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -409,9 +409,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "elliptic-curve" -version = "0.14.0-rc.4" +version = "0.14.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2f706120f0bcce3bf4f0975ca74f8f27509f159b788a06f7800de883fdca7a" +checksum = "92ccc36f4cfd3b96979b66a2162a10052eb0b98c9241ed1498273c79898d26a7" dependencies = [ "base16ct", "crypto-bigint", diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index d458cd4..991ead7 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ecdsa" -version = "0.17.0-rc.1" +version = "0.17.0-rc.2" 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.3", default-features = false, features = ["sec1"] } +elliptic-curve = { version = "0.14.0-rc.6", 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 }