Cargo.toml 793 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [package]
  2. name = "integration-ebpf"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. [dependencies]
  7. aya-bpf = { path = "../../bpf/aya-bpf" }
  8. aya-log-ebpf = { path = "../../bpf/aya-log-ebpf" }
  9. [build-dependencies]
  10. which = { workspace = true }
  11. xtask = { path = "../../xtask" }
  12. [[bin]]
  13. name = "log"
  14. path = "src/log.rs"
  15. [[bin]]
  16. name = "map_test"
  17. path = "src/map_test.rs"
  18. [[bin]]
  19. name = "name_test"
  20. path = "src/name_test.rs"
  21. [[bin]]
  22. name = "pass"
  23. path = "src/pass.rs"
  24. [[bin]]
  25. name = "test"
  26. path = "src/test.rs"
  27. [[bin]]
  28. name = "relocations"
  29. path = "src/relocations.rs"
  30. [[bin]]
  31. name = "bpf_probe_read"
  32. path = "src/bpf_probe_read.rs"
  33. [[bin]]
  34. name = "two_progs"
  35. path = "src/two_progs.rs"
  36. [[bin]]
  37. name = "redirect"
  38. path = "src/redirect.rs"
  39. [[bin]]
  40. name = "xdp_sec"
  41. path = "src/xdp_sec.rs"