17 lines
273 B
TOML
17 lines
273 B
TOML
|
|
[package]
|
||
|
|
name = "kernel-land"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "kernel-land"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
aya-ebpf = { workspace = true }
|
||
|
|
aya-log-ebpf = { workspace = true }
|
||
|
|
common-lib = { workspace = true }
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
debug = 2
|