Cargo.toml 562 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "mp4parse"
  3. version = "0.2.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. build = "build.rs"
  17. [dependencies]
  18. byteorder = "0.4.2"
  19. [dev-dependencies]
  20. test-assembler = "0.1.1"
  21. [build-dependencies]
  22. rusty-cheddar = "0.3.1"