19 lines
560 B
TOML
19 lines
560 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.
|
|
|
|
[features]
|
|
default = []
|