-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from HEnquist/optional_fft
Optional fft resamplers via Cargo feature
- Loading branch information
Showing
10 changed files
with
334 additions
and
173 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
[package] | ||
name = "rubato" | ||
version = "0.14.1" | ||
version = "0.15.0" | ||
rust-version = "1.61" | ||
authors = ["HEnquist <[email protected]>"] | ||
description = "Asynchronous resampling library intended for audio data" | ||
|
@@ -13,10 +13,14 @@ edition = "2021" | |
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[features] | ||
default = ["fft_resampler"] | ||
fft_resampler = ["realfft", "num-complex"] | ||
|
||
[dependencies] | ||
log = { version = "0.4.18", optional = true } | ||
realfft = "3.3.0" | ||
num-complex = "0.4" | ||
realfft = { version = "3.3.0", optional = true } | ||
num-complex = { version = "0.4", optional = true } | ||
num-integer = "0.1.45" | ||
num-traits = "0.2" | ||
|
||
|
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
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.