[package]
edition = "2024"
name = "bs2b"
version = "0.2.0"
authors = ["Ivan Kachalkin<xikxp1@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bauer stereophonic-to-binaural (bs2b) DSP library in Rust"
readme = "README.md"
keywords = [
"audio",
"dsp",
"crossfeed",
"binaural",
"stereo",
]
categories = ["multimedia::audio"]
license = "MIT"
repository = "https://github.com/xikxp1/bs2b"
[features]
default = ["std"]
std = []
streaming = []
[lib]
name = "bs2b"
path = "src/lib.rs"
[[test]]
name = "golden_vectors"
path = "tests/golden_vectors.rs"
[[bench]]
name = "process"
path = "benches/process.rs"
harness = false
[dependencies.libm]
version = "0.2.15"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.rand]
version = "0.10.0"