Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. rust-version.workspace = true
  10. edition.workspace = true
  11. [dependencies]
  12. aya-ebpf = { path = "../../ebpf/aya-ebpf" }
  13. aya-log-ebpf = { path = "../../ebpf/aya-log-ebpf" }
  14. integration-common = { path = "../integration-common" }
  15. network-types = "0.0.7"
  16. [build-dependencies]
  17. which = { workspace = true }
  18. xtask = { path = "../../xtask" }
  19. [[bin]]
  20. name = "bpf_probe_read"
  21. path = "src/bpf_probe_read.rs"
  22. [[bin]]
  23. name = "log"
  24. path = "src/log.rs"
  25. [[bin]]
  26. name = "map_test"
  27. path = "src/map_test.rs"
  28. [[bin]]
  29. name = "memmove_test"
  30. path = "src/memmove_test.rs"
  31. [[bin]]
  32. name = "name_test"
  33. path = "src/name_test.rs"
  34. [[bin]]
  35. name = "pass"
  36. path = "src/pass.rs"
  37. [[bin]]
  38. name = "raw_tracepoint"
  39. path = "src/raw_tracepoint.rs"
  40. [[bin]]
  41. name = "redirect"
  42. path = "src/redirect.rs"
  43. [[bin]]
  44. name = "relocations"
  45. path = "src/relocations.rs"
  46. [[bin]]
  47. name = "ring_buf"
  48. path = "src/ring_buf.rs"
  49. [[bin]]
  50. name = "simple_prog"
  51. path = "src/simple_prog.rs"
  52. [[bin]]
  53. name = "strncmp"
  54. path = "src/strncmp.rs"
  55. [[bin]]
  56. name = "tcx"
  57. path = "src/tcx.rs"
  58. [[bin]]
  59. name = "test"
  60. path = "src/test.rs"
  61. [[bin]]
  62. name = "two_progs"
  63. path = "src/two_progs.rs"
  64. [[bin]]
  65. name = "xdp_sec"
  66. path = "src/xdp_sec.rs"
  67. [[bin]]
  68. name = "uprobe_cookie"
  69. path = "src/uprobe_cookie.rs"