1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-04-27 06:09:00 +00:00
mp4-rust/Cargo.toml
Alfred Gutierrez 18f1718b70
Release 0.14.0 (#117)
* Update Cargo.toml

* Update README.md
2023-07-31 20:54:29 -07:00

29 lines
731 B
TOML

[package]
name = "mp4"
version = "0.14.0"
authors = ["Alf <alf.g.jr@gmail.com>"]
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"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "bench_main"
harness = false