[package]
edition = "2021"
rust-version = "1.80"
name = "oxideav-opus"
version = "0.0.13"
authors = ["Mark Karpeles"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Opus audio codec — orphan-rebuild scaffold pending clean-room re-implementation."
homepage = "https://github.com/OxideAV/oxideav-opus"
readme = "README.md"
keywords = [
"multimedia",
"audio",
"opus",
"codec",
"pure-rust",
]
categories = [
"multimedia::encoding",
"multimedia::audio",
]
license = "MIT"
repository = "https://github.com/OxideAV/oxideav-opus"
[lib]
name = "oxideav_opus"
path = "src/lib.rs"
[[test]]
name = "celt_synthesis_roundtrip"
path = "tests/celt_synthesis_roundtrip.rs"
[[test]]
name = "fec_decode"
path = "tests/fec_decode.rs"
[[test]]
name = "malformed_input"
path = "tests/malformed_input.rs"
[[test]]
name = "multistream_decode"
path = "tests/multistream_decode.rs"
[[test]]
name = "silk_fixture_decode"
path = "tests/silk_fixture_decode.rs"
[dependencies.oxideav-core]
version = "0.1"