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.
37 lines
478 B
TOML
37 lines
478 B
TOML
[package]
|
|
name = "integration-ebpf"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
aya-bpf = { path = "../../bpf/aya-bpf" }
|
|
|
|
[[bin]]
|
|
name = "map_test"
|
|
path = "src/map_test.rs"
|
|
|
|
[[bin]]
|
|
name = "name_test"
|
|
path = "src/name_test.rs"
|
|
|
|
[[bin]]
|
|
name = "pass"
|
|
path = "src/pass.rs"
|
|
|
|
[[bin]]
|
|
name = "test"
|
|
path = "src/test.rs"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
opt-level = 2
|
|
overflow-checks = false
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
debug = 2
|
|
|
|
[workspace]
|
|
members = []
|