Skip to content

Commit 6fc9f34

Browse files
committed
Cut new prereleases
Releases the following: - `dhkem` v0.1.0-pre.1 - `frodo-kem` v0.1.0-pre.1 - `ml-kem` v0.3.0-pre.4 - `x-wing` v0.1.0-pre.4
1 parent 8bb69c4 commit 6fc9f34

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,3 @@ debug = true
1212

1313
[patch.crates-io]
1414
ml-kem = { path = "./ml-kem" }
15-
16-
kem = { git = "https://github.com/RustCrypto/traits" }

dhkem/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 Key Encapsulation Mechanism (KEM) adapters for Elliptic Curve
55
Diffie Hellman (ECDH) protocols
66
"""
7-
version = "0.1.0-pre.0"
7+
version = "0.1.0-pre.1"
88
edition = "2024"
99
rust-version = "1.85"
1010
license = "Apache-2.0 OR MIT"
@@ -14,7 +14,7 @@ keywords = ["crypto", "ecdh", "ecc"]
1414
readme = "README.md"
1515

1616
[dependencies]
17-
kem = "0.4.0-rc.4"
17+
kem = "0.3.0-rc.0"
1818
rand_core = "0.10.0-rc-5"
1919

2020
# optional dependencies

frodo-kem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frodo-kem"
3-
version = "0.1.0-pre.0"
3+
version = "0.1.0-pre.1"
44
description = "Pure Rust implementation of FrodoKEM and eFrodoKEM"
55
authors = ["The RustCrypto Team"]
66
documentation = "https://docs.rs/frodo-kem"

ml-kem/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 the Module-Lattice-Based Key-Encapsulation Mechanism Standard
55
(formerly known as Kyber) as described in FIPS 203
66
"""
7-
version = "0.3.0-pre.3"
7+
version = "0.3.0-pre.4"
88
edition = "2024"
99
rust-version = "1.85"
1010
license = "Apache-2.0 OR MIT"
@@ -26,7 +26,7 @@ zeroize = ["dep:zeroize"]
2626

2727
[dependencies]
2828
array = { package = "hybrid-array", version = "0.4.4", features = ["extra-sizes", "subtle"] }
29-
kem = "0.4.0-rc.4"
29+
kem = "0.3.0-rc.0"
3030
rand_core = "0.10.0-rc-5"
3131
sha3 = { version = "0.11.0-rc.3", default-features = false }
3232
subtle = { version = "2", default-features = false }

x-wing/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "x-wing"
33
description = "Pure Rust implementation of the X-Wing Key Encapsulation Mechanism (draft 06)"
4-
version = "0.1.0-pre.3"
4+
version = "0.1.0-pre.4"
55
edition = "2024"
66
rust-version = "1.85"
77
license = "Apache-2.0 OR MIT"
@@ -17,8 +17,8 @@ getrandom = ["kem/getrandom"]
1717
zeroize = ["dep:zeroize", "ml-kem/zeroize", "x25519-dalek/zeroize"]
1818

1919
[dependencies]
20-
kem = "0.4.0-rc.4"
21-
ml-kem = { version = "=0.3.0-pre.3", default-features = false, features = ["deterministic"] }
20+
kem = "0.3.0-rc.0"
21+
ml-kem = { version = "=0.3.0-pre.4", default-features = false, features = ["deterministic"] }
2222
rand_core = { version = "0.10.0-rc-5", default-features = false }
2323
sha3 = { version = "0.11.0-rc.3", default-features = false }
2424
x25519-dalek = { version = "=3.0.0-pre.4", default-features = false, features = ["static_secrets"] }

0 commit comments

Comments
 (0)