# 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 = "2021" rust-version = "1.70" name = "nist-pqc-seeded-rng" version = "0.2.0" authors = ["Sebastian Ramacher "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Implementation of the RNG used to produce the KATs in NIST PQC competition" readme = "README.md" keywords = [ "rng", "NIST", "PQC", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/ait-crypto/nist-pqc-seeded-rng" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "nist_pqc_seeded_rng" path = "src/lib.rs" [dependencies.aes] version = "0.8" default-features = false [dependencies.ctr] version = "0.9" default-features = false [dependencies.rand_core] version = "0.6" default-features = false [dependencies.serde] version = "1" features = ["derive"] optional = true default-features = false [dependencies.zeroize] version = "1.4" features = ["derive"] optional = true default-features = false [features] default = [ "std", "serde", "zeroize", ] serde = ["dep:serde"] std = ["ctr/std"] zeroize = [ "dep:zeroize", "ctr/zeroize", "aes/zeroize", ]