Cargo.toml 506 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "responder-ebpf"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. aya-bpf = { git = "https://github.com/aya-rs/aya" }
  7. aya-log-ebpf ={ git = "https://github.com/aya-rs/aya" }
  8. responder-common = { path = "../responder-common" }
  9. [profile.dev]
  10. opt-level = 3
  11. debug = false
  12. debug-assertions = false
  13. overflow-checks = false
  14. lto = true
  15. panic = "abort"
  16. incremental = false
  17. codegen-units = 1
  18. rpath = false
  19. [profile.release]
  20. lto = true
  21. panic = "abort"
  22. codegen-units = 1
  23. [workspace]
  24. members = []