[package]
edition = "2021"
name = "chord_detector"
version = "0.1.0"
authors = ["VannRR"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stream-based 12-bin chromagram computation and real-time chord detection."
readme = "README.md"
keywords = [
"audio",
"music",
"chromagram",
"chord-detection",
"signal-processing",
]
categories = [
"algorithms",
"multimedia::audio",
]
license = "GPL-3.0"
repository = "https://github.com/vannrr/chord_detector"
[lib]
name = "chord_detector"
path = "src/lib.rs"
[dependencies.rustfft]
version = "6.4"
default-features = false
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.lazy_static]
version = "1.5"
[dev-dependencies.lewton]
version = "0.10"
[dev-dependencies.rayon]
version = "1.10"
[dev-dependencies.walkdir]
version = "2.5"