4
0

Cargo.toml 845 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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"
  42. [[bin]]
  43. name = "ring_buf"
  44. path = "src/ring_buf.rs"