[package]
edition = "2024"
name = "rivet-container"
version = "0.1.3"
authors = ["Ely Erin Fox"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Clean-room container demux (MP4/MKV/TS/AVI) and mux (AV1 MP4, CMAF, HLS) for the rivet transcoder, no FFmpeg. Imported as `container`."
readme = "README.md"
license-file = "LICENSE.md"
repository = "https://github.com/elyerinfox/rivet"
resolver = "2"
[lib]
name = "container"
path = "src/lib.rs"
[[test]]
name = "aac_extensions"
path = "tests/aac_extensions.rs"
[[test]]
name = "ac3_eac3_mux"
path = "tests/ac3_eac3_mux.rs"
[[test]]
name = "apple_compat"
path = "tests/apple_compat.rs"
[[test]]
name = "audio_mux"
path = "tests/audio_mux.rs"
[[test]]
name = "hdr_extraction"
path = "tests/hdr_extraction.rs"
[[test]]
name = "mkv_demux"
path = "tests/mkv_demux.rs"
[[test]]
name = "mp4_avcc_pps"
path = "tests/mp4_avcc_pps.rs"
[[test]]
name = "mux_boxes"
path = "tests/mux_boxes.rs"
[[test]]
name = "opus_mux"
path = "tests/opus_mux.rs"
[[test]]
name = "streaming_demux"
path = "tests/streaming_demux.rs"
[[test]]
name = "streaming_equality"
path = "tests/streaming_equality.rs"
[[test]]
name = "ts_avi_mov_demux"
path = "tests/ts_avi_mov_demux.rs"
[[test]]
name = "ts_sps_dims"
path = "tests/ts_sps_dims.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.codec]
version = "0.1.3"
package = "rivet-codec"
[dependencies.matroska-demuxer]
version = "0.7"
[dependencies.mp4]
version = "0.14"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(streaming_api_landed)"]