-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
preiter
committed
Aug 10, 2021
1 parent
fa63aa4
commit e50810e
Showing
6 changed files
with
442 additions
and
491 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "ndrustfft" | ||
version = "0.1.6" | ||
version = "0.2.0" | ||
authors = ["preiter <[email protected]>"] | ||
edition = "2018" | ||
description = "N-dimensional real-to-complex FFT and real-to-real DCT for Rust" | ||
description = "N-dimensional c2c FFT, r2c FFT and r2r DCT for Rust" | ||
repository = "https://github.com/preiter93/ndrustfft" | ||
keywords = ["fft", "dft", "dct", "rustfft", "ndarray"] | ||
keywords = ["fft", "dft", "dct", "rustfft", "realfft", "rustdct", "ndarray"] | ||
readme = "README.md" | ||
license = "MIT" | ||
|
||
|
@@ -15,8 +15,10 @@ path = "src/lib.rs" | |
|
||
[dependencies] | ||
ndarray = { version = "0.15.0", features = ["rayon"] } | ||
rustfft = "6.0.1" | ||
rustfft = "6.0" | ||
num-traits = "0.2.12" | ||
rustdct = "0.6" | ||
realfft = "2.0.1" | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.3.4", features = ["html_reports"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.