[[bin]]
name = "mp4dump"
path = "src/bin/mp4dump.rs"
[[bin]]
name = "mp4info"
path = "src/bin/mp4info.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.byteorder]
version = "1.5"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.hex]
version = "0.4"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[[example]]
name = "boxes"
path = "examples/boxes.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[lib]
name = "mp4box"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Minimal MP4/ISOBMFF parser with JSON output, box decoding, and UUID support"
edition = "2024"
license = "MIT"
name = "mp4box"
readme = "README.md"
repository = "https://github.com/alfg/mp4box"
version = "0.5.0"
[[test]]
name = "basic_parse"
path = "tests/basic_parse.rs"
[[test]]
name = "hex_range"
path = "tests/hex_range.rs"
[[test]]
name = "json_roundtrip"
path = "tests/json_roundtrip.rs"
[[test]]
name = "known_boxes"
path = "tests/known_boxes.rs"
[[test]]
name = "registry_ftyp"
path = "tests/registry_ftyp.rs"