[package] name = "ml-dsa" description = """ WIP pure Rust implementation of the Module-Lattice-Based Digital Signature Algorithm (DO NOT USE) """ version = "0.0.3" edition = "2021" rust-version = "1.74" license = "Apache-2.0 OR MIT" homepage = "https://github.com/RustCrypto/signatures/tree/master/ml-dsa" repository = "https://github.com/RustCrypto/signatures" categories = ["cryptography", "no-std"] keywords = ["crypto", "signature", "lattice", "post-quantum"] [features] default = ["std"] std = ["sha3/std"] [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"] } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]