Cargo.toml 735 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "darkfi-fuzz2"
  3. version = "0.0.0"
  4. publish = false
  5. edition = "2021"
  6. [package.metadata]
  7. cargo-fuzz = true
  8. [dependencies]
  9. honggfuzz = "0.5"
  10. [dependencies.darkfi]
  11. path = "../.."
  12. features = ["zkas"]
  13. [dependencies.darkfi-serial]
  14. path = "../../src/serial"
  15. features = ["derive", "semver", "collections", "crypto", "hash"]
  16. [patch.crates-io]
  17. blake2b_simd = {git="https://github.com/parazyd/blake2_simd", branch="impl-common"}
  18. # Prevent this from interfering with workspaces
  19. [workspace]
  20. members = ["."]
  21. [profile.release]
  22. debug = 1
  23. [[bin]]
  24. name = "zkbinary-decode"
  25. path = "src/zkbinary_decode.rs"
  26. test = false
  27. doc = false
  28. [[bin]]
  29. name = "serial-decode-string"
  30. path = "src/serial_decode_string.rs"
  31. test = false
  32. doc = false