Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,17 @@ readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
# Map RealFFT's features one-to-one with RustFFT's. For more information, refer
# to the Feature Flags section at https://docs.rs/rustfft/latest/rustfft/
default = ["rustfft/default"]
avx = ["rustfft/avx"]
sse = ["rustfft/sse"]
neon = ["rustfft/neon"]
wasm_simd = ["rustfft/wasm_simd"]

[dependencies]
rustfft = "6.2.0"
rustfft = { version = "6.2.0", default-features = false }

[dev-dependencies]
criterion = "0.3"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

This library is a wrapper for [RustFFT](https://crates.io/crates/rustfft)
that enables fast and convenient FFT of real-valued data.
The API is designed to be as similar as possible to RustFFT.
The API is designed to be as similar as possible to RustFFT. Also, the feature flags are passed
on to RustFFT, allowing selection of its features – they do not affect RealFFT itself.

Using this library instead of RustFFT directly avoids the need of converting
real-valued data to complex before performing a FFT.
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
//!
//! This library is a wrapper for [RustFFT](https://crates.io/crates/rustfft)
//! that enables fast and convenient FFT of real-valued data.
//! The API is designed to be as similar as possible to RustFFT.
//! The API is designed to be as similar as possible to RustFFT. Also, the feature flags are passed
//! on to RustFFT, allowing selection of its features – they do not affect RealFFT itself.
//!
//! Using this library instead of RustFFT directly avoids the need of converting
//! real-valued data to complex before performing a FFT.
Expand Down
Loading