Cargo.toml 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [workspace]
  2. members = [
  3. "aya",
  4. "aya-log",
  5. "aya-log-common",
  6. "aya-log-parser",
  7. "aya-obj",
  8. "aya-tool",
  9. "test/integration-test",
  10. "xtask",
  11. # macros
  12. "aya-bpf-macros",
  13. "aya-log-ebpf-macros",
  14. # ebpf crates
  15. "bpf/aya-bpf",
  16. "bpf/aya-bpf-bindings",
  17. "bpf/aya-log-ebpf",
  18. "test/integration-ebpf",
  19. ]
  20. resolver = "2"
  21. default-members = [
  22. "aya",
  23. "aya-bpf-macros",
  24. "aya-log",
  25. "aya-log-common",
  26. "aya-log-parser",
  27. "aya-obj",
  28. "aya-tool",
  29. # test/integration-test is omitted; it must be built with xtask.
  30. "xtask",
  31. "aya-bpf-macros",
  32. "aya-log-ebpf-macros",
  33. # ebpf crates are omitted; they must be built with:
  34. # --target bpfe{b,l}-unknown-none
  35. # CARGO_CFG_BPF_TARGET_ARCH={x86_64,aarch64,arm,riscv64}
  36. ]
  37. [profile.dev]
  38. panic = "abort"
  39. [profile.release]
  40. panic = "abort"
  41. [profile.release.package.integration-ebpf]
  42. debug = 2
  43. codegen-units = 1