[package]
edition = "2024"
rust-version = "1.95.0"
name = "rtcp-packet"
version = "0.3.0"
authors = ["Alex Fishlock <alex.fishlock@racingjag.com>"]
build = false
exclude = [
"docs/**",
"tests/fixtures/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RTCP control packets: SR/RR/SDES/BYE/APP + compound packet (RFC 3550 §6) — spec-complete parse/serialize, no_std."
readme = "README.md"
keywords = [
"rtcp",
"rfc3550",
"no-std",
"media",
"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 = "rtcp_packet"
path = "src/lib.rs"
[[example]]
name = "build_sender_report"
path = "examples/build_sender_report.rs"
[[example]]
name = "parse_compound_packet"
path = "examples/parse_compound_packet.rs"
[[test]]
name = "label_coverage"
path = "tests/label_coverage.rs"
[[test]]
name = "non_exhaustive_coverage"
path = "tests/non_exhaustive_coverage.rs"
[[test]]
name = "spec_vectors"
path = "tests/spec_vectors.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"