-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (32 loc) · 801 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (32 loc) · 801 Bytes
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
37
38
39
40
41
42
[package]
name = "ensemble-ddos-detection"
version = "0.1.0"
edition = "2024"
[dependencies]
# Packet capture & protocol parsing
pnet = "0.35"
# ONNX Runtime inference
ort = { version = "=2.0.0-rc.11", features = ["ndarray"] }
ndarray = "0.16"
# Serialization (load JSON configs)
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Concurrent flow table
dashmap = "6"
# CLI
clap = { version = "4", features = ["derive"] }
# Time
chrono = "0.4"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
tracing-appender = "0.2"
# Error handling
anyhow = "1"
#TUI from netwatch
ratatui = "0.27"
crossterm = "0.27"
tokio = { version = "1", features = ["full"] }
pcap = "2"
ureq = "2"
nix = { version = "0.29", features = ["hostname"] }