stft-rs 0.5.1

Simple, streaming-friendly, no_std compliant STFT implementation with mel spectrogram support
Documentation
[[bench]]
harness = false
name = "stft-bench"
path = "benches/stft-bench.rs"

[dependencies.microfft]
optional = true
version = "0.6.0"

[dependencies.num-traits]
default-features = false
features = ["libm"]
version = "0.2"

[dependencies.rayon]
optional = true
version = "1.11"

[dependencies.rustfft]
optional = true
version = "6.4.1"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.7.0"

[dev-dependencies.ndarray-stats]
version = "0.6.0"

[dev-dependencies.rand]
version = "0.9.2"

[dev-dependencies.rand_distr]
version = "0.5.1"

[[example]]
name = "advanced_streaming"
path = "examples/advanced_streaming.rs"

[[example]]
name = "backend_comparison"
path = "examples/backend_comparison.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "buffer_reuse"
path = "examples/buffer_reuse.rs"

[[example]]
name = "multichannel_midside"
path = "examples/multichannel_midside.rs"

[[example]]
name = "multichannel_stereo"
path = "examples/multichannel_stereo.rs"

[[example]]
name = "spectral_operations"
path = "examples/spectral_operations.rs"

[[example]]
name = "spectral_processing"
path = "examples/spectral_processing.rs"

[[example]]
name = "streaming_usage"
path = "examples/streaming_usage.rs"

[[example]]
name = "type_aliases"
path = "examples/type_aliases.rs"

[features]
default = ["std"]
microfft-backend = ["dep:microfft"]
rayon = ["rustfft-backend", "dep:rayon"]
rustfft-backend = ["dep:rustfft"]
std = ["num-traits/std", "rustfft-backend"]

[lib]
name = "stft_rs"
path = "src/lib.rs"

[package]
authors = ["David Maseda Neira <david.masedan@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "mathematics", "science"]
description = "Simple, streaming-friendly, no_std compliant STFT implementation with mel spectrogram support"
edition = "2024"
license = "MIT"
name = "stft-rs"
readme = "README.md"
repository = "https://github.com/wizenink/stft-rs"
version = "0.5.1"

[[test]]
name = "allocation_tests"
path = "tests/allocation_tests.rs"

[[test]]
name = "batch_tests"
path = "tests/batch_tests.rs"

[[test]]
name = "config_tests"
path = "tests/config_tests.rs"

[[test]]
name = "debug_trait_test"
path = "tests/debug_trait_test.rs"

[[test]]
name = "interleaving_tests"
path = "tests/interleaving_tests.rs"

[[test]]
name = "mel_tests"
path = "tests/mel_tests.rs"

[[test]]
name = "multichannel_tests"
path = "tests/multichannel_tests.rs"

[[test]]
name = "spectral_ops_tests"
path = "tests/spectral_ops_tests.rs"

[[test]]
name = "streaming_multichannel_tests"
path = "tests/streaming_multichannel_tests.rs"

[[test]]
name = "streaming_tests"
path = "tests/streaming_tests.rs"

[[test]]
name = "trait_implementations_test"
path = "tests/trait_implementations_test.rs"