-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (35 loc) · 1.12 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (35 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[workspace]
resolver = "2"
members = [
"crates/packet-engine",
"crates/threat-engine",
"crates/process-monitor",
"crates/storage",
"crates/ai-engine",
"crates/pipeline",
"crates/dns-security",
"crates/plugins",
"apps/desktop/src-tauri", "apps/cli",
]
default-members = ["crates/packet-engine"]
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
pcap = "2"
pnet = "0.35"
etherparse = "0.20"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite"] }
rusqlite = { version = "0.31", features = ["bundled"] }
sysinfo = "0.32"
windows = { version = "0.58", features = ["Win32_NetworkManagement_IpHelper", "Win32_System_Threading", "Win32_System_ProcessStatus", "Win32_Foundation", "Win32_System_Diagnostics_ToolHelp"] }
candle-core = "0.8"
linfa = "0.7"
smartcore = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
parking_lot = "0.12"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }