[package]
edition = "2024"
name = "br41ndmg"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A polyphase sinc audio resampler with offline and streaming APIs for Rust."
readme = "README.md"
keywords = [
"audio",
"dsp",
"resampling",
"resampler",
"polyphase",
]
categories = [
"multimedia::audio",
"algorithms",
]
license = "MIT"
repository = "https://github.com/ultraelectronica/br41ndmg"
resolver = "2"
[features]
default = ["flac"]
flac = ["dep:claxon"]
[lib]
name = "br41ndmg"
path = "src/lib.rs"
[[example]]
name = "tone_resample"
path = "examples/tone_resample.rs"
[[test]]
name = "file_io"
path = "tests/file_io.rs"
[[test]]
name = "filter"
path = "tests/filter.rs"
[[test]]
name = "impulse"
path = "tests/impulse.rs"
[[test]]
name = "quality_tests"
path = "tests/quality_tests.rs"
[[test]]
name = "real_audio"
path = "tests/real_audio.rs"
[[test]]
name = "resampler"
path = "tests/resampler.rs"
[[test]]
name = "sine"
path = "tests/sine.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[test]]
name = "sweep"
path = "tests/sweep.rs"
[[test]]
name = "tags"
path = "tests/tags.rs"
[[bench]]
name = "resampler_bench"
path = "benches/resampler_bench.rs"
harness = false
[dependencies.claxon]
version = "0.4"
optional = true
[dependencies.hound]
version = "3.5"
[dependencies.thiserror]
version = "1"
[dev-dependencies.criterion]
version = "0.5"