# 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.67" name = "concrete-ntt" version = "0.2.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Concrete-NTT is a pure Rust high performance number theoretic transform library." homepage = "https://zama.ai/" readme = "README.md" keywords = ["ntt"] license = "BSD-3-Clause-Clear" repository = "https://github.com/zama-ai/concrete-ntt" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--html-in-header", "katex-header.html", "--cfg", "docsrs", ] [lib] name = "concrete_ntt" path = "src/lib.rs" [[example]] name = "mul_poly_native" path = "examples/mul_poly_native.rs" [[example]] name = "mul_poly_prime" path = "examples/mul_poly_prime.rs" [[bench]] name = "lib" path = "benches/lib.rs" [[bench]] name = "ntt" path = "benches/ntt.rs" harness = false [dependencies.aligned-vec] version = "0.5" default-features = false [dependencies.pulp] version = "0.18.22" default-features = false [dev-dependencies.criterion] version = "0.4" [dev-dependencies.rand] version = "0.8" [dev-dependencies.serde] version = "1.0.163" [dev-dependencies.serde_json] version = "1.0.96" [features] default = ["std"] nightly = ["pulp/nightly"] std = [ "pulp/std", "aligned-vec/std", ]