[package]
edition = "2024"
rust-version = "1.85"
name = "opus-decoder"
version = "0.1.1"
build = false
exclude = [
"testdata/",
"benches/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust Opus decoder — RFC 8251 conformant, no unsafe, no FFI"
homepage = "https://github.com/TadeuszWolfGang/Rusopus"
documentation = "https://docs.rs/opus-decoder"
readme = "README.md"
keywords = [
"opus",
"audio",
"codec",
"decoder",
"rfc8251",
]
categories = ["multimedia::audio"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TadeuszWolfGang/Rusopus"
[lib]
name = "opus_decoder"
path = "src/lib.rs"
[[test]]
name = "celt_output_rates"
path = "tests/celt_output_rates.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "conformance_rfc"
path = "tests/conformance_rfc.rs"
[[test]]
name = "multistream"
path = "tests/multistream.rs"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]