Cargo.toml 339 B

123456789101112131415161718192021
  1. [package]
  2. name = "url-fuzz"
  3. version = "0.0.1"
  4. authors = ["Automatically generated"]
  5. publish = false
  6. [package.metadata]
  7. cargo-fuzz = true
  8. [dependencies.url]
  9. path = ".."
  10. [dependencies.libfuzzer-sys]
  11. git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
  12. [[bin]]
  13. name = "parse"
  14. path = "fuzz_targets/parse.rs"
  15. [workspace]
  16. members = ["."]