Cargo.toml 630 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "smoltcp-fuzz"
  3. version = "0.0.1"
  4. authors = ["Automatically generated"]
  5. publish = false
  6. edition = "2018"
  7. [package.metadata]
  8. cargo-fuzz = true
  9. [dependencies]
  10. libfuzzer-sys = "0.4"
  11. getopts = "0.2"
  12. smoltcp = { path = "..", features = [ "medium-ethernet" ] }
  13. # Prevent this from interfering with workspaces
  14. [workspace]
  15. members = ["."]
  16. [[bin]]
  17. name = "packet_parser"
  18. path = "fuzz_targets/packet_parser.rs"
  19. test = false
  20. doc = false
  21. [[bin]]
  22. name = "tcp_headers"
  23. path = "fuzz_targets/tcp_headers.rs"
  24. test = false
  25. doc = false
  26. [[bin]]
  27. name = "dhcp_header"
  28. path = "fuzz_targets/dhcp_header.rs"
  29. test = false
  30. doc = false