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.
22 lines
592 B
TOML
22 lines
592 B
TOML
[workspace]
|
|
members = [
|
|
"aya", "aya-gen", "aya-log", "aya-log-common", "test/integration-test", "test/integration-test-macros", "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"
|
|
]
|
|
default-members = ["aya", "aya-gen", "aya-log", "aya-bpf-macros", "aya-log-ebpf-macros"]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[profile.dev.package.integration-ebpf]
|
|
opt-level = 2
|
|
overflow-checks = false
|
|
|
|
[profile.release.package.integration-ebpf]
|
|
debug = 2 |