base commit

This commit is contained in:
Guillermo Roche
2025-05-26 20:45:07 +02:00
commit 1394b5d76c
30 changed files with 3651 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
cargo-features = ["profile-rustflags"]
[package]
name = "net-logger-ebpf"
version = "0.1.0"
edition = "2021"
[dependencies]
aya-ebpf = "0.1.0"
aya-log-ebpf = "0.1.0"
net-logger-common = { path = "../net-logger-common" }
network-types = "0.0.6"
[[bin]]
name = "net-logger"
path = "src/main.rs"
[profile.dev]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
panic = "abort"
incremental = false
codegen-units = 1
rpath = false
[profile.release]
lto = true
panic = "abort"
codegen-units = 1
[workspace]
members = []