ml-kem 0.1.1

Pure Rust implementation of the Module-Lattice-Based Key-Encapsulation Mechanism Standard (formerly known as Kyber) as described in the FIPS 203 Initial Public Draft
Documentation
[package]
name = "ml-kem"
description = """
Pure Rust implementation of the Module-Lattice-Based Key-Encapsulation Mechanism Standard
(formerly known as Kyber) as described in the FIPS 203 Initial Public Draft
"""
version = "0.1.1"
edition = "2021"
rust-version = "1.74"
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/RustCrypto/KEMs/tree/master/ml-kem"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "kyber", "lattice", "post-quantum"]

[features]
default = ["std"]
std = ["sha3/std"]
deterministic = [] # Expose deterministic generation and encapsulation functions

[dependencies]
kem = "0.3.0-pre.0"
hybrid-array = { version = "0.2.0-rc.8", features = ["extra-sizes"] }
rand_core = "0.6.4"
sha3 = { version = "0.10.8", default-features = false }

[dev-dependencies]
criterion = "0.5.1"
hex = "0.4.3"
hex-literal = "0.4.1"
num-rational = { version = "0.4.2", default-features = false, features = ["num-bigint"] }
rand = "0.8.5"
crypto-common = { version = "0.1.6", features = ["rand_core"] }

[[bench]]
name = "mlkem"
harness = false

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]