Cargo.toml 417 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "aml-fuzz"
  3. version = "0.0.0"
  4. authors = ["Automatically generated"]
  5. publish = false
  6. edition = "2018"
  7. [package.metadata]
  8. cargo-fuzz = true
  9. [dependencies]
  10. libfuzzer-sys = "0.3"
  11. simplelog = "0.8"
  12. [dependencies.aml]
  13. path = ".."
  14. # Prevent this from interfering with workspaces
  15. [workspace]
  16. members = ["."]
  17. [[bin]]
  18. name = "fuzz_target_1"
  19. path = "fuzz_targets/fuzz_target_1.rs"
  20. test = false
  21. doc = false