[package]
edition = "2024"
rust-version = "1.95.0"
name = "rdd29"
version = "0.3.1"
authors = ["Alex Fishlock <alex.fishlock@racingjag.com>"]
build = false
exclude = [
"docs/**",
"tests/fixtures/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SMPTE RDD 29:2019 Dolby Atmos bitstream — frame/element framing + bed/object metadata, no_std."
readme = "README.md"
keywords = [
"rdd29",
"smpte",
"dolby-atmos",
"audio",
"broadcast",
]
categories = [
"parser-implementations",
"multimedia",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fishloa/rust-broadcast"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
serde = ["dep:serde"]
std = [
"broadcast-common/std",
"thiserror/std",
]
[lib]
name = "rdd29"
path = "src/lib.rs"
[[example]]
name = "build_atmos_frame"
path = "examples/build_atmos_frame.rs"
[[example]]
name = "parse_atmos_frame"
path = "examples/parse_atmos_frame.rs"
[[test]]
name = "fixture_eac3"
path = "tests/fixture_eac3.rs"
[[test]]
name = "label_coverage"
path = "tests/label_coverage.rs"
[[test]]
name = "non_exhaustive_coverage"
path = "tests/non_exhaustive_coverage.rs"
[[test]]
name = "oom_regression"
path = "tests/oom_regression.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[dependencies.broadcast-common]
version = "9.3"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2"
default-features = false
[dev-dependencies.serde_json]
version = "1.0"