edr-research-rust/Cargo.toml

31 lines
808 B
TOML
Raw Normal View History

[workspace]
members = [
2026-03-30 14:19:13 +02:00
"user-land",
"kernel-land",
"common-lib",
]
2026-03-30 14:19:13 +02:00
resolver = "2"
[workspace.dependencies]
# User-land
aya = { version = "0.13" }
aya-log = { version = "0.2" }
libc = { version = "0.2" }
tokio = { version = "1", features = ["full"] }
ratatui = { version = "0.29" }
crossterm = { version = "0.28" }
serde = { version = "1", features = ["derive"] }
serde_norway = { version = "0.9" }
serde_json = { version = "1" }
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
uuid = { version = "1", features = ["v4"] }
regex = { version = "1" }
# Kernel-land (eBPF)
aya-ebpf = { version = "0.1" }
aya-log-ebpf = { version = "0.1" }
# Shared
common-lib = { path = "common-lib" }