ml-kem 0.2.1

Pure Rust implementation of the Module-Lattice-Based Key-Encapsulation Mechanism Standard (formerly known as Kyber) as described in FIPS 203
Documentation
[[bench]]
harness = false
name = "mlkem"
path = "benches/mlkem.rs"

[dependencies.hybrid-array]
features = ["extra-sizes"]
version = "0.2.0-rc.9"

[dependencies.kem]
version = "0.3.0-pre.0"

[dependencies.rand_core]
version = "0.6.4"

[dependencies.sha3]
default-features = false
version = "0.10.8"

[dependencies.zeroize]
default-features = false
optional = true
version = "1.8.1"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.crypto-common]
features = ["rand_core"]
version = "0.1.6"

[dev-dependencies.hex]
features = ["serde"]
version = "0.4.3"

[dev-dependencies.hex-literal]
version = "0.4.1"

[dev-dependencies.num-rational]
default-features = false
features = ["num-bigint"]
version = "0.4.2"

[dev-dependencies.rand]
version = "0.8.5"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0.208"

[dev-dependencies.serde_json]
version = "1.0.125"

[features]
default = ["std"]
deterministic = []
std = ["sha3/std"]
zeroize = ["dep:zeroize"]

[lib]
name = "ml_kem"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["cryptography", "no-std"]
description = """
Pure Rust implementation of the Module-Lattice-Based Key-Encapsulation Mechanism Standard
(formerly known as Kyber) as described in FIPS 203
"""
edition = "2021"
exclude = ["tests/key-gen.rs", "tests/key-gen.json", "tests/encap-decap.rs", "tests/encap-decap.json"]
homepage = "https://github.com/RustCrypto/KEMs/tree/master/ml-kem"
keywords = ["crypto", "kyber", "lattice", "post-quantum"]
license = "Apache-2.0 OR MIT"
name = "ml-kem"
readme = "README.md"
repository = "https://github.com/RustCrypto/KEMs"
rust-version = "1.74"
version = "0.2.1"

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