1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- [package]
- name = "integration-ebpf"
- version = "0.1.0"
- edition = "2021"
- publish = false
- [dependencies]
- aya-bpf = { path = "../../bpf/aya-bpf" }
- aya-log-ebpf = { path = "../../bpf/aya-log-ebpf" }
- [build-dependencies]
- xtask = { path = "../../xtask" }
- [[bin]]
- name = "log"
- path = "src/log.rs"
- [[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"
- [[bin]]
- name = "relocations"
- path = "src/relocations.rs"
- [[bin]]
- name = "bpf_probe_read"
- path = "src/bpf_probe_read.rs"
- [[bin]]
- name = "two_progs"
- path = "src/two_progs.rs"
|