summaryrefslogtreecommitdiffstats
path: root/third_party/rust/mp4parse_capi/Cargo.toml
blob: 57ae8fcfa12b7b63d075be8474f8686c845b5c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "mp4parse_capi"
version = "0.13.0"
authors = [
  "Ralph Giles <giles@mozilla.com>",
  "Matthew Gregan <kinetik@flim.org>",
  "Alfredo Yang <ayang@mozilla.com>",
  "Jon Bauman <jbauman@mozilla.com>",
  "Bryce Seager van Dyk <bvandyk@mozilla.com>",
]

description = "Parser for ISO base media file format (mp4)"
documentation = "https://docs.rs/mp4parse_capi/"
license = "MPL-2.0"

repository = "https://github.com/mozilla/mp4parse-rust"

# Avoid complaints about trying to package test files.
exclude = [
  "*.mp4",
]

[badges]
travis-ci = { repository = "https://github.com/mozilla/mp4parse-rust" }

[dependencies]
byteorder = "1.2.1"
fallible_collections = { version = "0.4", features = ["std_io"] }
log = "0.4"
mp4parse = { version = "0.13.0", path = "../mp4parse", features = ["unstable-api"] }
num-traits = "0.2.14"

[dev-dependencies]
env_logger = "0.8"

[features]
missing-pixi-permitted = ["mp4parse/missing-pixi-permitted"]
3gpp = ["mp4parse/3gpp"]
meta-xml = ["mp4parse/meta-xml"]
mp4v = ["mp4parse/mp4v"]