Cargo.toml 499 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "darkfi-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.darkfi]
  11. path = ".."
  12. [dependencies.darkfi-serial]
  13. path = "../src/serial"
  14. features = ["derive", "semver", "collections", "crypto", "hash"]
  15. # Prevent this from interfering with workspaces
  16. [workspace]
  17. members = ["."]
  18. [profile.release]
  19. debug = 1
  20. [[bin]]
  21. name = "serial"
  22. path = "fuzz_targets/serial.rs"
  23. test = false
  24. doc = false