Skip to content

Commit

Permalink
x-wing v0.0.1-alpha (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Sep 27, 2024
1 parent c57e7ad commit f0e2eb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

14 changes: 4 additions & 10 deletions x-wing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "x-wing"
description = """
Pure Rust implementation of the X-Wing Key-Encapsulation Mechanism
"""
version = "0.1.0"
version = "0.0.1-alpha"
edition = "2021"
rust-version = "1.81"
license = "Apache-2.0 OR MIT"
Expand All @@ -27,17 +27,11 @@ missing_docs = "deny" # Require all public interfaces to be documented

[dependencies]
rand_core = { version = "0.6", default-features = false }
x25519-dalek = { version = "2.0", default-features = false, features = [
"static_secrets",
] }
ml-kem = { version = "0.2", default-features = false, features = [
"deterministic",
], path = "../ml-kem" }
x25519-dalek = { version = "2.0", default-features = false, features = ["static_secrets"] }
ml-kem = { version = "0.2", default-features = false, features = ["deterministic"], path = "../ml-kem" }
sha3 = { version = "0.10", default-features = false }
kem = "0.3.0-pre.0"
zeroize = { version = "1.8.1", optional = true, default-features = true, features = [
"zeroize_derive",
] }
zeroize = { version = "1.8.1", optional = true, default-features = true, features = ["zeroize_derive"] }

[dev-dependencies]
rand_core = { version = "0.6" }
Expand Down

0 comments on commit f0e2eb1

Please sign in to comment.