mp4parse_capi 0.11.2

Parser for ISO base media file format (mp4)
[package]
name = "mp4parse_capi"
version = "0.11.2"
authors = [
  "Ralph Giles <giles@mozilla.com>",
  "Matthew Gregan <kinetik@flim.org>",
  "Alfredo Yang <ayang@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"
log = "0.4"
mp4parse = {version = "0.11.2", path = "../mp4parse"}
num-traits = "0.2.0"

[dev-dependencies]
env_logger = "0.5.3"

[build-dependencies]
cbindgen = "0.5.2"

[features]
fuzz = ["mp4parse/fuzz"]
# Enable mp4parse_fallible to use fallible memory allocation rather than
# panicking on OOM.  Note that this is only safe within Gecko where the system
# allocator has been globally overridden (see BMO 1457359).
mp4parse_fallible = ["mp4parse/mp4parse_fallible"]