From 935ab91f6c1c3d96493af8c666d332dd55262a97 Mon Sep 17 00:00:00 2001 From: Michael Rosenberg Date: Mon, 6 Jul 2026 12:26:06 -0400 Subject: [PATCH 1/2] Update xwing deps to stable versions --- Cargo.lock | 8 ++++---- x-wing/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7c1e46..bf42262 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,9 +323,9 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "5.0.0-rc.1" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c906a87e53a36ff795d72e06e8162a83c5436e3ea89e942a9cb9fc083f0a384f" +checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23" dependencies = [ "cfg-if", "cpufeatures", @@ -1602,9 +1602,9 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "3.0.0-rc.1" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eee64e8620caa64914d669b1f68f858aaff54e2d0f9ad3b30a613b58a1baa83e" +checksum = "e7e8131a03190127fb2263afc72b322ecadae46b6ff8c6f399ff5d02f5559af6" dependencies = [ "curve25519-dalek", "rand_core", diff --git a/x-wing/Cargo.toml b/x-wing/Cargo.toml index 5111b1a..963344a 100644 --- a/x-wing/Cargo.toml +++ b/x-wing/Cargo.toml @@ -20,11 +20,11 @@ hazmat = [] [dependencies] kem = "0.3" -ml-kem = { version = "0.3.0-rc.0", default-features = false, features = ["hazmat"] } +ml-kem = { version = "0.3", default-features = false, features = ["hazmat"] } rand_core = { version = "0.10", default-features = false } sha3 = { version = "0.12", default-features = false } shake = { version = "0.1", default-features = false } -x25519-dalek = { version = "3.0.0-pre.6", default-features = false, features = ["static_secrets"] } +x25519-dalek = { version = "3", default-features = false, features = ["static_secrets"] } # optional dependencies zeroize = { version = "1.8.1", optional = true, default-features = true } From c35e45727c1194af50ea80956db11d0ed57290d2 Mon Sep 17 00:00:00 2001 From: Michael Rosenberg Date: Mon, 6 Jul 2026 12:26:36 -0400 Subject: [PATCH 2/2] Set xwing version to 0.1 --- x-wing/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-wing/Cargo.toml b/x-wing/Cargo.toml index 963344a..e49f529 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-rc.0" +version = "0.1.0" edition = "2024" rust-version = "1.85" license = "Apache-2.0 OR MIT"