-
Notifications
You must be signed in to change notification settings - Fork 23
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
Showing
2 changed files
with
6 additions
and
7 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ description = """ | |
A simple and fast `no_std` library to get the frequency spectrum of a digital signal (e.g. audio) using FFT. | ||
It follows the KISS principle and consists of simple building blocks/optional features. | ||
""" | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
authors = ["Philipp Schuster <[email protected]>"] | ||
edition = "2018" | ||
keywords = ["fft", "spectrum", "frequencies", "audio", "dsp"] | ||
|
@@ -15,8 +15,8 @@ homepage = "https://github.com/phip1611/spectrum-analyzer" | |
repository = "https://github.com/phip1611/spectrum-analyzer" | ||
documentation = "https://docs.rs/spectrum-analyzer" | ||
|
||
# fixes build problems of wrong feature resolution in microfft crate, see | ||
# https://gitlab.com/ra_kete/microfft-rs/-/merge_requests/11 | ||
# fixes `no_std` build problems caused by wrong feature resolution of Cargo | ||
# This works since Rust 1.51 (stable) | ||
resolver = "2" | ||
|
||
# room for mutliple fft implementations in the future, for example "rustfft" that needs STD | ||
|
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