mirror of
https://github.com/xzcrpw/blackwall.git
synced 2026-04-24 11:56:21 +02:00
22 lines
318 B
TOML
22 lines
318 B
TOML
|
|
[package]
|
||
|
|
name = "blackwall-ebpf"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "blackwall-ebpf"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
common = { path = "../common", default-features = false }
|
||
|
|
aya-ebpf = "0.1"
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
lto = true
|
||
|
|
panic = "abort"
|
||
|
|
codegen-units = 1
|
||
|
|
opt-level = 2
|
||
|
|
strip = "none"
|
||
|
|
debug = 2
|