# 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" name = "cpntt" version = "0.1.1" authors = ["tayu0110"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An implementation of Number Theoretic Transform for competitive programming" readme = "README.md" keywords = [ "competitive", "math", "fft", "ntt", ] license = "CC0-1.0" repository = "https://github.com/tayu0110/cpntt.git" [lib] name = "cpntt" path = "src/lib.rs" [[bench]] name = "cooley-tukey" path = "benches/cooley-tukey.rs" harness = false [[bench]] name = "gentleman-sande" path = "benches/gentleman-sande.rs" harness = false [[bench]] name = "ntt" path = "benches/ntt.rs" harness = false [dependencies] [dev-dependencies.criterion] version = "0.5.1"