Skip to content

Commit

Permalink
README fix (v5.0.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Apr 19, 2021
1 parent 0b0bc7f commit c8a036c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.5.1"
version = "0.5.2"
authors = ["Philipp Schuster <[email protected]>"]
edition = "2018"
keywords = ["fft", "spectrum", "frequencies", "audio", "dsp"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ resolver = "2"

# by default feature "microfft-real" is used
[dependencies]
spectrum-analyzer = "<latest>"
spectrum-analyzer = "<latest version, see crates.io>"

# or if you need another feature (FFT implementation)
[dependencies.spectrum-analyzer]
default-features = false # important! only one feature at a time works!
version = "0.5.0"
version = "<latest version, see crates.io>"
features = ["rustfft-complex"] # or on of the other features
```

Expand Down

0 comments on commit c8a036c

Please sign in to comment.