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
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion 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.0.1-alpha"
version = "0.1.0-pre.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
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.0.1"
version = "0.1.0-pre.0"
description = "Pure Rust implementation of FrodoKEM and eFrodoKEM"
authors = ["The RustCrypto Team"]
documentation = "https://docs.rs/frodo-kem"
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "0.3.0-pre.3"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
Expand Down
4 changes: 2 additions & 2 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.2"
version = "0.1.0-pre.3"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
Expand All @@ -18,7 +18,7 @@ zeroize = ["dep:zeroize", "ml-kem/zeroize", "x25519-dalek/zeroize"]

[dependencies]
kem = "0.4.0-rc.2"
ml-kem = { version = "=0.3.0-pre.2", default-features = false, features = ["deterministic"] }
ml-kem = { version = "=0.3.0-pre.3", default-features = false, features = ["deterministic"] }
rand_core = { version = "0.10.0-rc-3", 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