4
0

Cargo.toml 917 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-log",
  24. "aya-log-common",
  25. "aya-log-parser",
  26. "aya-obj",
  27. "aya-tool",
  28. # test/integration-test is omitted; it must be built with xtask.
  29. "xtask",
  30. "aya-bpf-macros",
  31. "aya-log-ebpf-macros",
  32. # ebpf crates are omitted; they must be built with:
  33. # --target bpfe{b,l}-unknown-none
  34. # CARGO_CFG_BPF_TARGET_ARCH={x86_64,aarch64,arm,riscv64}
  35. ]
  36. [profile.dev]
  37. panic = "abort"
  38. [profile.release]
  39. panic = "abort"
  40. [profile.release.package.integration-ebpf]
  41. debug = 2
  42. codegen-units = 1