1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-05-20 01:08:06 +00:00
mp4-rust/Cargo.toml
Alfred Gutierrez 0f373b03db
Box summary and to_json traits. (#29)
* Add Mp4Box traits for getting json or text summary for each box.

* fix test and serde version.

* skip serializing entries

* skip serializing sample_sizes

* Add custom serializer for FixedPoint types.
2020-09-08 22:24:34 -07:00

33 lines
656 B
TOML

[package]
name = "mp4"
version = "0.6.0"
authors = ["Alf <alf.g.jr@gmail.com>"]
edition = "2018"
description = """
MP4 reader and writer library in Rust.
"""
documentation = "https://docs.rs/mp4rs"
readme = "README.md"
homepage = "https://github.com/alfg/mp4rs"
repository = "https://github.com/alfg/mp4rs"
keywords = ["mp4", "isobmff", "video", "multimedia"]
license = "MIT"
[dependencies]
thiserror = "^1.0"
byteorder = "1"
bytes = "0.5"
num-rational = { version = "0.3", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "bench_main"
harness = false