mirror of
https://github.com/ParrotXray/Mantis.git
synced 2026-08-24 19:00: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
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
[package]
|
|
name = "mantis"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
common = { path = "../common", features = ["user"] }
|
|
macros = { path = "../macros" }
|
|
|
|
actix = "0.13.5"
|
|
actix-cors = "0.7.1"
|
|
actix-web = "4.11.0"
|
|
actix-ws = "0.4.0"
|
|
aya = { workspace = true }
|
|
aya-log = { workspace = true }
|
|
network-types = { workspace = true }
|
|
crossbeam = "0.8.4"
|
|
futures-util = "0.3.30"
|
|
libc = { workspace = true }
|
|
mime_guess = "2.0.5"
|
|
parking_lot = "0.12.5"
|
|
rust-embed = "8.7.2"
|
|
serde = { workspace = true }
|
|
serde_json = "1.0.143"
|
|
sysinfo = "0.38.2"
|
|
thiserror = "2.0.3"
|
|
tokio = { version = "1.40.0", features = ["full", "macros"] }
|
|
tokio-tungstenite = "0.28.0"
|
|
toml = "1.0.3"
|
|
tracing = "0.1.41"
|
|
tracing-appender = "0.2.3"
|
|
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
|
|
url = "2.5.7"
|
|
xsk-rs = { workspace = true }
|
|
maxminddb = "0.27.1"
|
|
lru = "0.16.2"
|
|
futures = "0.3.31"
|
|
tract-onnx = "0.22.1"
|
|
chrono = "0.4"
|
|
|
|
ort-tract = { version = "0.3.0+0.22", optional = true }
|
|
ort = { version = "=2.0.0-rc.12", default-features = false, features = ["std", "ndarray"] }
|
|
ndarray = "0.17"
|
|
|
|
[features]
|
|
default = ["native-ort-backend"]
|
|
tract-backend = ["dep:ort-tract", "ort/alternative-backend"]
|
|
native-ort-backend = ["ort/load-dynamic", "ort/api-18"]
|
|
|
|
[build-dependencies]
|
|
cargo_metadata = { workspace = true }
|
|
cc = "1"
|
|
dotenvy = "0.15.7"
|
|
|
|
[[bin]]
|
|
name = "mantis"
|
|
path = "src/main.rs"
|