Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,3 @@ debug = true

[patch.crates-io]
ml-kem = { path = "./ml-kem" }

kem = { git = "https://github.com/RustCrypto/traits" }
4 changes: 2 additions & 2 deletions dhkem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
Pure Rust implementation of Key Encapsulation Mechanism (KEM) adapters for Elliptic Curve
Diffie Hellman (ECDH) protocols
"""
version = "0.1.0-pre.0"
version = "0.1.0-pre.1"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
Expand All @@ -14,7 +14,7 @@ keywords = ["crypto", "ecdh", "ecc"]
readme = "README.md"

[dependencies]
kem = "0.4.0-rc.4"
kem = "0.3.0-rc.0"
rand_core = "0.10.0-rc-5"

# optional dependencies
Expand Down
2 changes: 1 addition & 1 deletion frodo-kem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frodo-kem"
version = "0.1.0-pre.0"
version = "0.1.0-pre.1"
description = "Pure Rust implementation of FrodoKEM and eFrodoKEM"
authors = ["The RustCrypto Team"]
documentation = "https://docs.rs/frodo-kem"
Expand Down
4 changes: 2 additions & 2 deletions ml-kem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
Pure Rust implementation of the Module-Lattice-Based Key-Encapsulation Mechanism Standard
(formerly known as Kyber) as described in FIPS 203
"""
version = "0.3.0-pre.3"
version = "0.3.0-pre.4"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
Expand All @@ -26,7 +26,7 @@ zeroize = ["dep:zeroize"]

[dependencies]
array = { package = "hybrid-array", version = "0.4.4", features = ["extra-sizes", "subtle"] }
kem = "0.4.0-rc.4"
kem = "0.3.0-rc.0"
rand_core = "0.10.0-rc-5"
sha3 = { version = "0.11.0-rc.3", default-features = false }
subtle = { version = "2", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions x-wing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "x-wing"
description = "Pure Rust implementation of the X-Wing Key Encapsulation Mechanism (draft 06)"
version = "0.1.0-pre.3"
version = "0.1.0-pre.4"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
Expand All @@ -17,8 +17,8 @@ getrandom = ["kem/getrandom"]
zeroize = ["dep:zeroize", "ml-kem/zeroize", "x25519-dalek/zeroize"]

[dependencies]
kem = "0.4.0-rc.4"
ml-kem = { version = "=0.3.0-pre.3", default-features = false, features = ["deterministic"] }
kem = "0.3.0-rc.0"
ml-kem = { version = "=0.3.0-pre.4", default-features = false, features = ["deterministic"] }
rand_core = { version = "0.10.0-rc-5", default-features = false }
sha3 = { version = "0.11.0-rc.3", default-features = false }
x25519-dalek = { version = "=3.0.0-pre.4", default-features = false, features = ["static_secrets"] }
Expand Down