2020-01-08 05:34:01 +00:00
|
|
|
[package]
|
2020-01-13 03:51:25 +00:00
|
|
|
name = "mp4"
|
2020-08-19 05:28:32 +00:00
|
|
|
version = "0.5.0"
|
2020-01-08 05:34:01 +00:00
|
|
|
authors = ["Alf <alf.g.jr@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-01-13 03:43:16 +00:00
|
|
|
description = """
|
|
|
|
MP4 Reader in Rust
|
|
|
|
ISO/IEC 14496-12 - ISO Base Media File Format (QuickTime, MPEG-4, etc)
|
|
|
|
"""
|
|
|
|
|
|
|
|
documentation = "https://docs.rs/mp4rs"
|
|
|
|
homepage = "https://github.com/alfg/mp4rs"
|
|
|
|
repository = "https://github.com/alfg/mp4rs"
|
|
|
|
|
|
|
|
keywords = ["mp4", "isobmff"]
|
|
|
|
|
|
|
|
license = "MIT"
|
|
|
|
|
2020-01-08 05:34:01 +00:00
|
|
|
[dependencies]
|
2020-07-28 16:36:17 +00:00
|
|
|
thiserror = "^1.0"
|
2020-01-10 06:26:08 +00:00
|
|
|
byteorder = "1"
|
2020-07-31 17:12:26 +00:00
|
|
|
bytes = "0.5"
|
2020-08-19 05:28:32 +00:00
|
|
|
num-rational = "0.3"
|