Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. [package]
  2. name = "integration-ebpf"
  3. version = "0.1.0"
  4. publish = false
  5. authors.workspace = true
  6. license.workspace = true
  7. repository.workspace = true
  8. homepage.workspace = true
  9. edition.workspace = true
  10. [dependencies]
  11. aya-ebpf = { path = "../../ebpf/aya-ebpf" }
  12. aya-log-ebpf = { path = "../../ebpf/aya-log-ebpf" }
  13. integration-common = { path = "../integration-common" }
  14. network-types = "0.0.7"
  15. [build-dependencies]
  16. which = { workspace = true }
  17. xtask = { path = "../../xtask" }
  18. [[bin]]
  19. name = "bpf_probe_read"
  20. path = "src/bpf_probe_read.rs"
  21. [[bin]]
  22. name = "log"
  23. path = "src/log.rs"
  24. [[bin]]
  25. name = "map_test"
  26. path = "src/map_test.rs"
  27. [[bin]]
  28. name = "memmove_test"
  29. path = "src/memmove_test.rs"
  30. [[bin]]
  31. name = "name_test"
  32. path = "src/name_test.rs"
  33. [[bin]]
  34. name = "pass"
  35. path = "src/pass.rs"
  36. [[bin]]
  37. name = "redirect"
  38. path = "src/redirect.rs"
  39. [[bin]]
  40. name = "relocations"
  41. path = "src/relocations.rs"
  42. [[bin]]
  43. name = "ring_buf"
  44. path = "src/ring_buf.rs"
  45. [[bin]]
  46. name = "simple_prog"
  47. path = "src/simple_prog.rs"
  48. [[bin]]
  49. name = "strncmp"
  50. path = "src/strncmp.rs"
  51. [[bin]]
  52. name = "tcx"
  53. path = "src/tcx.rs"
  54. [[bin]]
  55. name = "test"
  56. path = "src/test.rs"
  57. [[bin]]
  58. name = "two_progs"
  59. path = "src/two_progs.rs"
  60. [[bin]]
  61. name = "xdp_sec"
  62. path = "src/xdp_sec.rs"