[package] name = "mp4" version = "0.14.0" authors = ["Alf "] edition = "2018" description = "MP4 reader and writer library in Rust." documentation = "https://docs.rs/mp4" readme = "README.md" homepage = "https://github.com/alfg/mp4-rust" repository = "https://github.com/alfg/mp4-rust" keywords = ["mp4", "iso-mp4", "isobmff", "video", "multimedia"] license = "MIT" include = ["src", "benches", "Cargo.toml", "README", "LICENSE"] [dependencies] thiserror = "^1.0" byteorder = "1" bytes = "1.1.0" num-rational = { version = "0.4.0", features = ["serde"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.37.0", features = ["io-util"] } futures = "0.3.30" const_format = "0.2.32" pin-project-lite = "0.2.14" async-stream = "0.3.5" [dev-dependencies] anyhow = "1.0" criterion = "0.5.1" tokio = { version = "1.37.0", features = ["full"] } tokio-util = "0.7.10" [[bench]] name = "bench_main" harness = false