diff --git a/Cargo.lock b/Cargo.lock index b327414d..01185cae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -428,7 +428,7 @@ dependencies = [ [[package]] name = "rfc6979" -version = "0.5.0-pre.1" +version = "0.5.0-pre.2" dependencies = [ "hex-literal", "hmac", diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index c5de1239..cd88db9a 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -19,7 +19,7 @@ digest = "=0.11.0-pre.7" num-bigint = { package = "num-bigint-dig", version = "0.8", default-features = false, features = ["prime", "rand", "zeroize"] } num-traits = { version = "0.2", default-features = false } pkcs8 = { version = "=0.11.0-pre.0", default-features = false, features = ["alloc"] } -rfc6979 = { version = "=0.5.0-pre.1", path = "../rfc6979" } +rfc6979 = { version = "=0.5.0-pre.2", path = "../rfc6979" } sha2 = { version = "=0.11.0-pre.2", default-features = false } signature = { version = "=2.3.0-pre.2", default-features = false, features = ["alloc", "digest", "rand_core"] } zeroize = { version = "1", default-features = false } diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 7a194b57..a96d8bc8 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -22,7 +22,7 @@ signature = { version = "=2.3.0-pre.2", default-features = false, features = ["r # optional dependencies der = { version = "=0.8.0-pre.0", optional = true } digest = { version = "=0.11.0-pre.7", optional = true, default-features = false, features = ["oid"] } -rfc6979 = { version = "=0.5.0-pre.1", optional = true, path = "../rfc6979" } +rfc6979 = { version = "=0.5.0-pre.2", optional = true, path = "../rfc6979" } serdect = { version = "0.2", optional = true, default-features = false, features = ["alloc"] } sha2 = { version = "=0.11.0-pre.2", optional = true, default-features = false, features = ["oid"] } spki = { version = "=0.8.0-pre.0", optional = true, default-features = false } diff --git a/rfc6979/Cargo.toml b/rfc6979/Cargo.toml index fc4f0779..9bc4760c 100644 --- a/rfc6979/Cargo.toml +++ b/rfc6979/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rfc6979" -version = "0.5.0-pre.1" +version = "0.5.0-pre.2" description = """ Pure Rust implementation of RFC6979: Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)