Cargo.toml 405 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "tailwindcss-oxide-fuzz"
  3. version = "0.0.0"
  4. publish = false
  5. edition = "2021"
  6. [package.metadata]
  7. cargo-fuzz = true
  8. [dependencies]
  9. libfuzzer-sys = "0.4"
  10. [dependencies.tailwindcss-oxide]
  11. path = ".."
  12. # Prevent this from interfering with workspaces
  13. [workspace]
  14. members = ["."]
  15. [profile.release]
  16. debug = 1
  17. [[bin]]
  18. name = "parsing"
  19. path = "fuzz_targets/parsing.rs"
  20. test = false
  21. doc = false