Cargo.toml 552 B

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