opus-decoder 0.1.0

Pure-Rust Opus decoder — RFC 8251 conformant, no unsafe, no FFI
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "opus-decoder"
version = "0.1.0"
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/tadeuszwojcik/rasopus"
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/tadeuszwojcik/rasopus"

[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"]