Skip to content
Open
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
6 changes: 5 additions & 1 deletion libDF/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ wasm = [
hdf5-static = ["hdf5?/static"]

[dependencies]
rustfft = "^6.1.0"
# `wasm_simd` is a no-op on non-wasm targets (cfg-gated inside rustfft), so
# enabling it unconditionally is safe for the cdylib/staticlib/native bin
# matrix. On `wasm32-unknown-unknown` with `+simd128` it lets rustfft's
# `FftPlannerWasmSimd` use v128 butterflies instead of scalar fallback.
rustfft = { version = "^6.1.0", features = ["wasm_simd"] }
realfft = "^3.1.0"
itertools = "0.12"
num-complex = { version = "^0.4", features = ["serde"] }
Expand Down