module-lattice 0.1.0

Functionality shared between the `ml-kem` and `ml-dsa` crates, including linear algebra with degree-256 polynomials over a prime-order field, vectors of such polynomials, and NTT polynomials / vectors, as well as packing of polynomials into coefficients with a specified number of bits.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "module-lattice"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Functionality shared between the `ml-kem` and `ml-dsa` crates, including linear algebra with degree-256 polynomials over
a prime-order field, vectors of such polynomials, and NTT polynomials / vectors, as well as packing of polynomials into
coefficients with a specified number of bits.
"""
homepage = "https://github.com/RustCrypto/KEMs/tree/master/module-lattice"
readme = "README.md"
keywords = [
    "crypto",
    "kyber",
    "lattice",
    "post-quantum",
]
categories = [
    "cryptography",
    "no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/RustCrypto/KEMs"
resolver = "2"

[package.metadata.docs.rs]
all-features = true

[features]
subtle = [
    "dep:subtle",
    "array/subtle",
]
zeroize = [
    "array/zeroize",
    "dep:zeroize",
]

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

[[test]]
name = "algebra"
path = "tests/algebra.rs"

[[test]]
name = "encode"
path = "tests/encode.rs"

[dependencies.array]
version = "0.4.7"
features = ["extra-sizes"]
package = "hybrid-array"

[dependencies.num-traits]
version = "0.2"
default-features = false

[dependencies.subtle]
version = "2"
optional = true
default-features = false

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

[dev-dependencies.getrandom]
version = "0.4"
features = ["sys_rng"]

[lints.clippy]
borrow_as_ptr = "warn"
cast_lossless = "warn"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
cast_sign_loss = "warn"
checked_conversions = "warn"
doc_markdown = "warn"
from_iter_instead_of_collect = "warn"
implicit_saturating_sub = "warn"
integer_division_remainder_used = "warn"
manual_assert = "warn"
map_unwrap_or = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
mod_module_files = "warn"
must_use_candidate = "warn"
needless_range_loop = "allow"
panic_in_result_fn = "warn"
ptr_as_ptr = "warn"
redundant_closure_for_method_calls = "warn"
ref_as_ptr = "warn"
return_self_not_must_use = "warn"
semicolon_if_nothing_returned = "warn"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"
trivially_copy_pass_by_ref = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_safety_comment = "warn"
unwrap_in_result = "warn"
unwrap_used = "warn"

[lints.rust]
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_lifetimes = "warn"
unused_qualifications = "warn"