[package]
edition = "2024"
rust-version = "1.95.0"
name = "container-probe"
version = "0.1.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 = "Robust media container-format detection — MPEG-2 TS (188/192/204/208 stride + phase), ISOBMFF, Matroska/WebM, MPEG-PS, FLV, MXF, WAV, Ogg, ASF, and elementary streams."
readme = "README.md"
keywords = [
"container",
"detection",
"mpeg-ts",
"mp4",
"probe",
]
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"]
std = ["broadcast-common/std"]
[lib]
name = "container_probe"
path = "src/lib.rs"
[[example]]
name = "identify"
path = "examples/identify.rs"
[[example]]
name = "streaming_probe"
path = "examples/streaming_probe.rs"
[[test]]
name = "api_labels"
path = "tests/api_labels.rs"
[[test]]
name = "corpus_sweep"
path = "tests/corpus_sweep.rs"
[[test]]
name = "drift_guard"
path = "tests/drift_guard.rs"
[[test]]
name = "fixture_magic_es"
path = "tests/fixture_magic_es.rs"
[[test]]
name = "fixture_structural"
path = "tests/fixture_structural.rs"
[[test]]
name = "fixture_ts"
path = "tests/fixture_ts.rs"
[[test]]
name = "insufficient_contract"
path = "tests/insufficient_contract.rs"
[[test]]
name = "insufficient_terminates"
path = "tests/insufficient_terminates.rs"
[[test]]
name = "label_coverage"
path = "tests/label_coverage.rs"
[[test]]
name = "no_panic_on_arbitrary_input"
path = "tests/no_panic_on_arbitrary_input.rs"
[[test]]
name = "non_exhaustive_coverage"
path = "tests/non_exhaustive_coverage.rs"
[[test]]
name = "prefix_sweep"
path = "tests/prefix_sweep.rs"
[dependencies.broadcast-common]
version = "9.3"
default-features = false
[dev-dependencies.mpeg-ps]
version = "0.4"
[dev-dependencies.mpeg-ts]
version = "0.4"
[dev-dependencies.st377-1]
version = "0.3"