[package]
edition = "2024"
rust-version = "1.87"
name = "lac"
version = "0.1.0"
authors = ["LO Contributors"]
build = false
exclude = [
"corpus/*",
"fuzz/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lo Audio Codec — lossless audio codec with LPC + partitioned Rice coding."
homepage = "https://git.lo.sh/lo/lac/wiki"
readme = "README.md"
keywords = [
"audio",
"codec",
"lossless",
"lpc",
"rice",
]
categories = [
"compression",
"multimedia::audio",
"multimedia::encoding",
"no-std",
]
license = "AGPL-3.0-only"
repository = "https://git.lo.sh/lo/lac"
[features]
__internal-for-bench = []
[lib]
name = "lac"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "latency"
path = "tests/latency.rs"
[[test]]
name = "mcu_mix"
path = "tests/mcu_mix.rs"
[[test]]
name = "synthetic"
path = "tests/synthetic.rs"
[[bench]]
name = "codec"
path = "benches/codec.rs"
required-features = ["__internal-for-bench"]
[dependencies]
[dev-dependencies.hound]
version = "3"