Cargo.toml 825 B

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. name = "mp4parse"
  3. version = "0.5.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. documentation = "https://mp4parse-docs.surge.sh/mp4parse/"
  10. license = "MPL-2.0"
  11. repository = "https://github.com/mozilla/mp4parse-rust"
  12. # Avoid complaints about trying to package test files.
  13. exclude = [
  14. "*.mp4",
  15. ]
  16. [dependencies]
  17. byteorder = "0.5.0"
  18. afl = { version = "0.1.1", optional = true }
  19. afl-plugin = { version = "0.1.1", optional = true }
  20. abort_on_panic = { version = "1.0.0", optional = true }
  21. [dev-dependencies]
  22. test-assembler = "0.1.2"
  23. [features]
  24. fuzz = ["afl", "afl-plugin", "abort_on_panic"]
  25. # Somewhat heavy-handed, but we want at least -Z force-overflow-checks=on.
  26. [profile.release]
  27. debug-assertions = true