-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (29 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "easyfft"
version = "0.4.1"
authors = ["Walter Smuts <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A library crate providing an easy FFT API for arrays and slices"
documentation = "https://docs.rs/easyfft/"
repository = "https://github.com/WalterSmuts/easyfft"
keywords = ["fft", "dft", "discrete", "fourier", "const-generics"]
categories = ["algorithms", "compression", "multimedia::encoding", "science", "mathematics"]
readme = "README.md"
# See: https://users.rust-lang.org/t/doctests-that-require-a-non-default-feature-is-it-possible/29529/7
[package.metadata."docs.rs"]
all-features = true
[features]
const-realfft = []
fallible = []
default = ["fallible"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
array-init = "2.1.0"
generic_singleton = "0.4.1"
num-complex = { version = "0.4.5", features = ["serde"] }
realfft = { version = "3.0.1"}
rustfft = "6.0.1"
serde = { version = "1.0.193", features = ["derive"] , optional = true}
[dev-dependencies]
approx = "0.5.1"