Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ tokio-util = "0.7"
pnet = "0.35"
pnet_datalink = "0.35"
pnet_packet = "0.35"
socket2 = "0.5"
socket2 = "0.6"
pcap = "2.0"
etherparse = "0.15"
etherparse = "0.21"

# Concurrency
crossbeam = "0.8"
Expand All @@ -32,7 +32,7 @@ dashmap = "6.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
toml = "1.1"

# CLI
clap = { version = "4.5", features = ["derive", "cargo"] }
Expand Down Expand Up @@ -68,34 +68,34 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }

# Error handling
anyhow = "1.0"
thiserror = "1.0"
thiserror = "2.0"

# Rate limiting
governor = "0.6"
governor = "0.10"

# Utilities
ipnetwork = "0.20"
rand = "0.8"
ipnetwork = "0.21"
rand = "0.9"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.7", features = ["v4", "serde"] }
num_cpus = "1.16"
rlimit = "0.10"
rlimit = "0.11"
indicatif = "0.18"
regex = "1.11"
sysinfo = "0.30"
sysinfo = "0.39"

# Plugin system
mlua = { version = "0.11", features = ["lua54", "vendored", "send"] }
mlua = { version = "0.12", features = ["lua54", "vendored", "send"] }

# TUI (Terminal User Interface)
ratatui = "0.30"
crossterm = { version = "0.29", features = ["event-stream"] }
futures = "0.3"

# Platform-specific (shared definitions)
nix = { version = "0.27", features = ["user", "process"] }
nix = { version = "0.31", features = ["user", "process"] }
libc = "0.2"
windows = { version = "0.52", features = ["Win32_Security", "Win32_Foundation", "Win32_NetworkManagement_IpHelper", "Win32_UI_Shell"] }
windows = { version = "0.62", features = ["Win32_Security", "Win32_Foundation", "Win32_NetworkManagement_IpHelper", "Win32_UI_Shell"] }

[workspace.package]
version = "1.0.0"
Expand Down
Loading
Loading