Skip to content

Commit 6375b4d

Browse files
authored
Cut prereleases with hybrid-array v0.4 support (#1052)
Releases the following: - `dsa` v0.7.0-rc.5 - `ecdsa` v0.17.0-rc.6 - `rfc6979` v0.5.0-rc.1
1 parent 0812b94 commit 6375b4d

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dsa/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsa"
3-
version = "0.7.0-rc.4"
3+
version = "0.7.0-rc.5"
44
description = """
55
Pure Rust implementation of the Digital Signature Algorithm (DSA) as specified
66
in FIPS 186-4 (Digital Signature Standard), providing RFC6979 deterministic
@@ -17,12 +17,12 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
der = { version = "0.8.0-rc.8", features = ["alloc"] }
20-
digest = "0.11.0-rc.0"
20+
digest = "0.11.0-rc.1"
2121
crypto-bigint = { version = "0.7.0-rc.4", default-features = false, features = ["alloc", "zeroize"] }
2222
crypto-primes = { version = "0.7.0-pre.1", default-features = false }
23-
rfc6979 = { version = "0.5.0-rc.0" }
24-
sha2 = { version = "0.11.0-rc.0", default-features = false }
25-
signature = { version = "3.0.0-rc.2", default-features = false, features = ["alloc", "digest", "rand_core"] }
23+
rfc6979 = { version = "0.5.0-rc.1" }
24+
sha2 = { version = "0.11.0-rc.2", default-features = false }
25+
signature = { version = "3.0.0-rc.3", default-features = false, features = ["alloc", "digest", "rand_core"] }
2626
zeroize = { version = "1", default-features = false, features = ["alloc"] }
2727

2828
# optional dependencies
@@ -35,7 +35,7 @@ pkcs8 = { version = "0.11.0-rc.6", default-features = false, features = ["pem"]
3535
proptest = "1"
3636
rand = "0.9"
3737
rand_chacha = "0.9"
38-
sha1 = "0.11.0-rc.0"
38+
sha1 = "0.11.0-rc.2"
3939
der = { version = "0.8.0-rc.8", features = ["derive"] }
4040

4141
[features]

ecdsa/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ecdsa"
3-
version = "0.17.0-rc.5"
3+
version = "0.17.0-rc.6"
44
description = """
55
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
66
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing
@@ -24,7 +24,7 @@ zeroize = { version = "1.5", default-features = false }
2424
# optional dependencies
2525
der = { version = "0.8.0-rc.8", optional = true }
2626
digest = { version = "0.11.0-rc.1", optional = true, default-features = false, features = ["oid"] }
27-
rfc6979 = { version = "0.5.0-rc.0", optional = true }
27+
rfc6979 = { version = "0.5.0-rc.1", optional = true }
2828
serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
2929
sha2 = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["oid"] }
3030
spki = { version = "0.8.0-rc.4", optional = true, default-features = false }

rfc6979/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfc6979"
3-
version = "0.5.0-rc.0"
3+
version = "0.5.0-rc.1"
44
description = """
55
Pure Rust implementation of RFC6979: Deterministic Usage of the
66
Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)
@@ -16,9 +16,9 @@ edition = "2024"
1616
rust-version = "1.85"
1717

1818
[dependencies]
19-
hmac = { version = "0.13.0-rc.0", default-features = false }
19+
hmac = { version = "0.13.0-rc.1", default-features = false }
2020
subtle = { version = "2", default-features = false }
2121

2222
[dev-dependencies]
2323
hex-literal = "1"
24-
sha2 = "0.11.0-rc.0"
24+
sha2 = "0.11.0-rc.2"

0 commit comments

Comments
 (0)