mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
877 B
TOML
52 lines
877 B
TOML
[workspace]
|
|
members = [
|
|
"aya",
|
|
"aya-log",
|
|
"aya-log-common",
|
|
"aya-log-parser",
|
|
"aya-obj",
|
|
"aya-tool",
|
|
"test/integration-test",
|
|
"xtask",
|
|
|
|
# macros
|
|
"aya-bpf-macros",
|
|
"aya-log-ebpf-macros",
|
|
|
|
# ebpf crates
|
|
"bpf/aya-bpf",
|
|
"bpf/aya-bpf-bindings",
|
|
"bpf/aya-log-ebpf",
|
|
"test/integration-ebpf",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
default-members = [
|
|
"aya",
|
|
"aya-log",
|
|
"aya-log-common",
|
|
"aya-log-parser",
|
|
"aya-obj",
|
|
"aya-tool",
|
|
"test/integration-test",
|
|
"xtask",
|
|
|
|
"aya-bpf-macros",
|
|
"aya-log-ebpf-macros",
|
|
|
|
# ebpf crates are omitted; they must be built with:
|
|
# --target bpfe{b,l}-unknown-none
|
|
# CARGO_CFG_BPF_TARGET_ARCH={x86_64,aarch64,arm,riscv64}
|
|
]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[profile.release.package.integration-ebpf]
|
|
debug = 2
|
|
codegen-units = 1
|