From 4bee6fe8bdbfb3c57421b8294eb35025d663b27b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 10 Jan 2026 12:19:26 -0700 Subject: [PATCH] Cut new prereleases Releases the following: - `dhkem` v0.1.0-pre.0 - `frodo-kem` v0.1.0-pre.0 - `ml-kem` v0.3.0-pre.3 - `x-wing` v0.1.0-pre.3 --- Cargo.lock | 8 ++++---- dhkem/Cargo.toml | 2 +- frodo-kem/Cargo.toml | 2 +- ml-kem/Cargo.toml | 2 +- x-wing/Cargo.toml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e801e5b..07463aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -353,7 +353,7 @@ dependencies = [ [[package]] name = "dhkem" -version = "0.0.1-alpha" +version = "0.1.0-pre.0" dependencies = [ "elliptic-curve", "getrandom", @@ -440,7 +440,7 @@ checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41" [[package]] name = "frodo-kem" -version = "0.0.1" +version = "0.1.0-pre.0" dependencies = [ "aes", "chacha20", @@ -713,7 +713,7 @@ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "ml-kem" -version = "0.3.0-pre.2" +version = "0.3.0-pre.3" dependencies = [ "const-oid", "criterion", @@ -1520,7 +1520,7 @@ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" [[package]] name = "x-wing" -version = "0.1.0-pre.2" +version = "0.1.0-pre.3" dependencies = [ "getrandom", "hex", diff --git a/dhkem/Cargo.toml b/dhkem/Cargo.toml index 30d5a48..b334bdf 100644 --- a/dhkem/Cargo.toml +++ b/dhkem/Cargo.toml @@ -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" diff --git a/frodo-kem/Cargo.toml b/frodo-kem/Cargo.toml index b7bf8b7..90c8f32 100644 --- a/frodo-kem/Cargo.toml +++ b/frodo-kem/Cargo.toml @@ -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" diff --git a/ml-kem/Cargo.toml b/ml-kem/Cargo.toml index 3d7c8ea..61a95c8 100644 --- a/ml-kem/Cargo.toml +++ b/ml-kem/Cargo.toml @@ -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" diff --git a/x-wing/Cargo.toml b/x-wing/Cargo.toml index b12bbed..39606eb 100644 --- a/x-wing/Cargo.toml +++ b/x-wing/Cargo.toml @@ -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" @@ -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"] }