Skip to content

Commit 942de7f

Browse files
authored
Cut new releases (#1188)
Releases new versions of everything except `dsa` and `ecdsa` (since we previously released those) which include the `rand_core` v0.10.0-rc-6 upgrade (as well as the associated `signature` v3.0.0-rc.9 release). The `ml-dsa` crate contains a fix for #1176. Releases the following: - `ed25519` v3.0.0-rc.3 - `ed448` v0.5.0-rc.3 - `lms-signature` v0.1.0-rc.1 - `ml-dsa` v0.1.0-rc.4 - `rfc6979` v0.5.0-rc.4 - `slh-dsa` v0.2.0-rc.3
1 parent 4009614 commit 942de7f

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ der = { version = "0.8.0-rc.10", features = ["alloc"] }
2020
digest = "0.11.0-rc.9"
2121
crypto-bigint = { version = "0.7.0-rc.22", default-features = false, features = ["alloc", "zeroize"] }
2222
crypto-primes = { version = "0.7.0-pre.8", default-features = false }
23-
rfc6979 = { version = "0.5.0-rc.3" }
23+
rfc6979 = { version = "0.5.0-rc.4" }
2424
sha2 = { version = "0.11.0-rc.4", default-features = false }
2525
signature = { version = "3.0.0-rc.9", default-features = false, features = ["alloc", "digest", "rand_core"] }
2626
zeroize = { version = "1", default-features = false, features = ["alloc"] }

ecdsa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ zeroize = { version = "1.5", default-features = false }
2424
# optional dependencies
2525
der = { version = "0.8.0-rc.10", optional = true }
2626
digest = { version = "0.11.0-rc.9", optional = true, default-features = false, features = ["oid"] }
27-
rfc6979 = { version = "0.5.0-rc.3", optional = true }
27+
rfc6979 = { version = "0.5.0-rc.4", optional = true }
2828
serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
2929
sha2 = { version = "0.11.0-rc.4", optional = true, default-features = false, features = ["oid"] }
3030
spki = { version = "0.8.0-rc.4", optional = true, default-features = false }

ed25519/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ed25519"
3-
version = "3.0.0-rc.2"
3+
version = "3.0.0-rc.3"
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """

ed448/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ed448"
3-
version = "0.5.0-rc.2"
3+
version = "0.5.0-rc.3"
44
edition = "2024"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"

lms/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lms-signature"
33
description = "Pure Rust implementation of Leighton-Micali Hash-Based Signatures (RFC 8554)"
4-
version = "0.1.0-rc.0"
4+
version = "0.1.0-rc.1"
55
edition = "2024"
66
license = "Apache-2.0 OR MIT"
77
homepage = "https://github.com/RustCrypto/signatures/tree/master/lms"
@@ -12,10 +12,10 @@ categories = ["cryptography"]
1212
keywords = ["crypto", "signature"]
1313

1414
[dependencies]
15-
digest = "0.11.0-rc.7"
15+
digest = "0.11.0-rc.9"
1616
hybrid-array = { version = "0.4", features = ["extra-sizes", "zeroize"] }
17-
getrandom = { version = "0.4.0-rc.0", features = ["sys_rng"] }
18-
sha2 = "0.11.0-rc.3"
17+
getrandom = { version = "0.4.0-rc.1", features = ["sys_rng"] }
18+
sha2 = "0.11.0-rc.4"
1919
static_assertions = "1.1"
2020
rand_core = "0.10.0-rc-6"
2121
signature = { version = "3.0.0-rc.9", features = ["alloc", "digest", "rand_core"] }

ml-dsa/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
Pure Rust implementation of ML-DSA (formerly known as CRYSTALS-Dilithium) as
55
described in FIPS-204 (final)
66
"""
7-
version = "0.1.0-rc.3"
7+
version = "0.1.0-rc.4"
88
edition = "2024"
99
rust-version = "1.85"
1010
license = "Apache-2.0 OR MIT"
@@ -45,7 +45,7 @@ zeroize = { version = "1.8.1", optional = true, default-features = false }
4545

4646
[dev-dependencies]
4747
criterion = "0.7"
48-
getrandom = { version = "0.4.0-rc.0", features = ["sys_rng"] }
48+
getrandom = { version = "0.4.0-rc.1", features = ["sys_rng"] }
4949
hex = { version = "0.4", features = ["serde"] }
5050
hex-literal = "1"
5151
pkcs8 = { version = "0.11.0-rc.10", features = ["pem"] }

rfc6979/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfc6979"
3-
version = "0.5.0-rc.3"
3+
version = "0.5.0-rc.4"
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,7 +16,7 @@ edition = "2024"
1616
rust-version = "1.85"
1717

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

2222
[dev-dependencies]

slh-dsa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
Pure Rust implementation of SLH-DSA (aka SPHINCS+) as described in the
55
FIPS-205 standard
66
"""
7-
version = "0.2.0-rc.2"
7+
version = "0.2.0-rc.3"
88
edition = "2024"
99
rust-version = "1.85"
1010
license = "Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)