Cargo.toml 662 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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"
  32. [[bin]]
  33. name = "two_progs"
  34. path = "src/two_progs.rs"