From fe23a8cf66693494de83276d68ba11f60f56aa80 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 22 Oct 2025 12:28:54 -0600 Subject: [PATCH] rfc6979 v0.5.0-rc.2 (#1089) --- Cargo.lock | 2 +- dsa/Cargo.toml | 2 +- ecdsa/Cargo.toml | 2 +- rfc6979/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a4cc4d..c30c438 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -949,7 +949,7 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" [[package]] name = "rfc6979" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" dependencies = [ "hex-literal", "hmac", diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index 4ad1573..ad007c3 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -20,7 +20,7 @@ der = { version = "0.8.0-rc.8", features = ["alloc"] } digest = "0.11.0-rc.1" crypto-bigint = { version = "0.7.0-rc.6", default-features = false, features = ["alloc", "zeroize"] } crypto-primes = { version = "0.7.0-pre.2", default-features = false } -rfc6979 = { version = "0.5.0-rc.1" } +rfc6979 = { version = "0.5.0-rc.2" } sha2 = { version = "0.11.0-rc.2", default-features = false } signature = { version = "3.0.0-rc.4", default-features = false, features = ["alloc", "digest", "rand_core"] } zeroize = { version = "1", default-features = false, features = ["alloc"] } diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 512eee3..30297ef 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -24,7 +24,7 @@ zeroize = { version = "1.5", default-features = false } # optional dependencies der = { version = "0.8.0-rc.8", optional = true } digest = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["oid"] } -rfc6979 = { version = "0.5.0-rc.1", optional = true } +rfc6979 = { version = "0.5.0-rc.2", optional = true } serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] } sha2 = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["oid"] } spki = { version = "0.8.0-rc.4", optional = true, default-features = false } diff --git a/rfc6979/Cargo.toml b/rfc6979/Cargo.toml index 732f821..9e1a30c 100644 --- a/rfc6979/Cargo.toml +++ b/rfc6979/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rfc6979" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" description = """ Pure Rust implementation of RFC6979: Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)