mirror of
https://github.com/ParrotXray/Mantis.git
synced 2026-08-23 16:10:27 +09:00
* refactor: Rename project from NetGuardia to Mantis * fix: convert mantis-frontend from tracked files to submodule * wip * feat: Suricata integration stabilization and config unification Fix a series of bugs in the Suricata daemon integration and unify configuration so users interact only with config.toml. * docs: sur-001-c1 Suricata integration stabilization findings
35 lines
940 B
TOML
35 lines
940 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["mantis", "common", "macros", "ingress-ebpf", "egress-ebpf"]
|
|
default-members = ["mantis", "common"]
|
|
|
|
[workspace.dependencies]
|
|
aya = { version = "0.13.1", default-features = false }
|
|
aya-ebpf = { version = "0.1.1", default-features = false }
|
|
aya-log = { version = "0.2.1", default-features = false }
|
|
aya-log-ebpf = { version = "0.1.0", default-features = false }
|
|
cargo_metadata = { version = "0.23.1", default-features = false }
|
|
libc = { version = "0.2.159", default-features = false }
|
|
network-types = "0.1.0"
|
|
serde = { version = "1.0.215", features = ["derive"] }
|
|
xsk-rs = { version = "0.8.0", default-features = false }
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
#opt-level = 3
|
|
#lto = true
|
|
#strip = true
|
|
#debug = false
|
|
#overflow-checks = false
|
|
|
|
[profile.release.package.ingress-ebpf]
|
|
debug = 2
|
|
codegen-units = 1
|
|
|
|
[profile.release.package.egress-ebpf]
|
|
debug = 2
|
|
codegen-units = 1
|