Skip to content

Commit

Permalink
README + v0.4.1 (fixes #24)
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Mar 30, 2021
1 parent 39290be commit ffb6e6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <phip1611@gmail.com>"]
edition = "2018"
keywords = ["fft", "spectrum", "frequencies", "audio", "dsp"]
Expand All @@ -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
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@ or look into the screenshots of this README.

### Cargo.toml
```Cargo.toml
# only needed when using "microfft"-feature
# fixes build problems of wrong feature resolution in microfft crate, see
# https://gitlab.com/ra_kete/microfft-rs/-/merge_requests/11
# this requires Rust Stable 1.51
# ONLY NEEDED FOR `no_std`-builds!
# fixes `no_std` build problems caused by wrong feature resolution of Cargo
# This works since Rust 1.51 (stable)
resolver = "2"

# by default feature "rustfft-complex" is used
Expand Down

0 comments on commit ffb6e6d

Please sign in to comment.