26 lines
657 B
TOML
26 lines
657 B
TOML
[package]
|
|
name = "headroom-dsp"
|
|
description = "DSP kernels for Headroom: true-peak limiter, compressor, AGC envelope helpers."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license = "MPL-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
# Kept intentionally empty. The DSP crate must build clean on any host
|
|
# and is the most reusable piece in the workspace. If you find yourself
|
|
# wanting to add a dependency here, think twice.
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[[bench]]
|
|
name = "layer_a"
|
|
harness = false
|