Cargo.toml 711 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "mp4parse_capi"
  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. build = "build.rs"
  17. [dependencies]
  18. "mp4parse" = {version = "0.5.1", path = "../mp4parse"}
  19. [build-dependencies]
  20. rusty-cheddar = "0.3.2"
  21. [features]
  22. fuzz = ["mp4parse/fuzz"]
  23. # Somewhat heavy-handed, but we want at least -Z force-overflow-checks=on.
  24. [profile.release]
  25. debug-assertions = true