# 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 = "2018" name = "ndrustfft" version = "0.5.0" authors = ["preiter "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "N-dimensional FFT, real-to-complex FFT and real-to-real DCT" readme = "README.md" keywords = [ "fft", "rustfft", "realfft", "rustdct", "ndarray", ] license = "MIT" repository = "https://github.com/preiter93/ndrustfft" [lib] name = "ndrustfft" path = "src/lib.rs" [[example]] name = "fft1" path = "examples/fft1.rs" [[example]] name = "fft2" path = "examples/fft2.rs" [[example]] name = "fft_norm" path = "examples/fft_norm.rs" [[example]] name = "rfft2" path = "examples/rfft2.rs" [[bench]] name = "ndrustfft" path = "benches/ndrustfft.rs" harness = false [[bench]] name = "ndrustfft_par" path = "benches/ndrustfft_par.rs" harness = false [dependencies.ndarray] version = "0.16" [dependencies.num-traits] version = "0.2" [dependencies.realfft] version = "3" [dependencies.rustdct] version = "0.7" [dependencies.rustfft] version = "6" default-features = false [dev-dependencies.criterion] version = "0.3.4" features = ["html_reports"] [features] avx = ["rustfft/avx"] default = [ "avx", "sse", "neon", "parallel", ] neon = ["rustfft/neon"] parallel = ["ndarray/rayon"] sse = ["rustfft/sse"]