mirror of
https://github.com/alfg/mp4-rust.git
synced 2025-02-22 07:56:16 +00:00
* 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.
33 lines
No EOL
656 B
TOML
33 lines
No EOL
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 |