Skip to content

Commit 58bae19

Browse files
authored
Cut new prereleases (#1319)
Releases the following, which all now depend either directly or transitively on `pkcs8` v0.11 (which had breaking changes in the final release) - `dsa` v0.7.0-rc.15 - `ecdsa` v0.17.0-rc.18 - `ed25519` v3.0.0-rc.5 - `ed448` v0.5.0-rc.6 - `ml-dsa` v0.1.0-rc.9 - `slh-dsa` v0.2.0-rc.5 - `xmss` v0.1.0-pre.1
1 parent 2eadc3c commit 58bae19

8 files changed

Lines changed: 16 additions & 16 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 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
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsa"
3-
version = "0.7.0-rc.14"
3+
version = "0.7.0-rc.15"
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

ecdsa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ecdsa"
3-
version = "0.17.0-rc.17"
3+
version = "0.17.0-rc.18"
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

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.4"
3+
version = "3.0.0-rc.5"
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.5"
3+
version = "0.5.0-rc.6"
44
edition = "2024"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"

ml-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 ML-DSA (formerly known as CRYSTALS-Dilithium) as
55
described in FIPS-204 (final)
66
"""
7-
version = "0.1.0-rc.8"
7+
version = "0.1.0-rc.9"
88
edition = "2024"
99
rust-version = "1.85"
1010
license = "Apache-2.0 OR MIT"

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.4"
7+
version = "0.2.0-rc.5"
88
edition = "2024"
99
rust-version = "1.85"
1010
license = "Apache-2.0 OR MIT"

xmss/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "xmss"
3+
version = "0.1.0-pre.1"
34
authors = ["Michael Lodder <redmike7@gmail.com>"]
45
description = """
56
Pure Rust implementation of XMSS (eXtended Merkle Signature Scheme)
67
as described in RFC 8391 and SP 800-208
78
"""
9+
license = "Apache-2.0 OR MIT"
810
edition = "2024"
911
homepage = "https://github.com/RustCrypto/signature/tree/master/xmss"
1012
repository = "https://github.com/RustCrypto/signatures"
1113
readme = "README.md"
1214
categories = ["cryptography"]
1315
keywords = ["xmss", "signature", "crypto", "cryptography", "rfc8391"]
14-
license = "MIT/Apache-2.0"
15-
version = "0.1.0-pre.0"
1616

1717
[features]
1818
default = []

0 commit comments

Comments
 (0)