Cargo.toml 452 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "mp4parse"
  3. version = "0.1.1"
  4. authors = [
  5. "Ralph Giles <giles@mozilla.com>",
  6. "Matthew Gregan <kinetik@flim.org>",
  7. ]
  8. description = "Parser for ISO base media file format (mp4)"
  9. license = "MPL-2.0"
  10. repository = "https://github.com/mozilla/mp4parse-rust"
  11. # Cargo includes random files from the working directory
  12. # by default! Avoid bloating the package with test files.
  13. exclude = [
  14. "*.mp4",
  15. ]
  16. [dependencies]
  17. byteorder = "0.3.8"