[package]
edition = "2024"
name = "resonators"
version = "0.1.0"
authors = ["John Hartquist <john@hartquist.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the Resonate algorithm for low-latency spectral analysis."
homepage = "https://github.com/jhartquist/resonators"
documentation = "https://docs.rs/resonators"
readme = "README.md"
keywords = [
"audio",
"dsp",
"spectral-analysis",
"real-time",
"resonate",
]
categories = [
"multimedia::audio",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jhartquist/resonators"
[lib]
name = "resonators"
path = "src/lib.rs"
[[example]]
name = "batch"
path = "examples/batch.rs"
[[example]]
name = "streaming"
path = "examples/streaming.rs"
[[test]]
name = "reference"
path = "tests/reference.rs"
[[bench]]
name = "bank"
path = "benches/bank.rs"
harness = false
[dependencies.num-complex]
version = "0.4.6"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.npyz]
version = "0.9.0"
features = ["npz"]