Cargo.toml 608 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. xtask = { path = "../../xtask" }
  11. [[bin]]
  12. name = "log"
  13. path = "src/log.rs"
  14. [[bin]]
  15. name = "map_test"
  16. path = "src/map_test.rs"
  17. [[bin]]
  18. name = "name_test"
  19. path = "src/name_test.rs"
  20. [[bin]]
  21. name = "pass"
  22. path = "src/pass.rs"
  23. [[bin]]
  24. name = "test"
  25. path = "src/test.rs"
  26. [[bin]]
  27. name = "relocations"
  28. path = "src/relocations.rs"
  29. [[bin]]
  30. name = "bpf_probe_read"
  31. path = "src/bpf_probe_read.rs"