-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 965 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 965 Bytes
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
[package]
name = "stft-rs"
description = "Simple, streaming-friendly, no_std compliant STFT implementation with mel spectrogram support"
version = "0.6.0"
edition = "2024"
authors = ["David Maseda Neira <david.masedan@gmail.com>"]
license = "MIT"
repository = "https://github.com/wizenink/stft-rs"
categories = ["no-std", "mathematics", "science"]
[dependencies]
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
rustfft = { version = "6.4.1", optional = true }
microfft = { version = "0.6.0", optional = true }
rayon = { version = "1.11", optional = true }
[features]
default = ["std"]
std = ["num-traits/std", "rustfft-backend"]
rustfft-backend = ["dep:rustfft"]
microfft-backend = ["dep:microfft"]
rayon = ["rustfft-backend", "dep:rayon"]
[dev-dependencies]
criterion = { version = "0.8.2", features = ["html_reports"] }
ndarray-stats = "0.7.0"
rand = "0.10.1"
rand_distr = "0.6.0"
[[bench]]
name = "stft-bench"
harness = false