Update Cargo.toml

This commit is contained in:
S.B
2025-11-26 16:58:57 +02:00
committed by GitHub
parent 7fc4148202
commit 97c366a846
+19 -19
View File
@@ -11,10 +11,10 @@ path = "src/main.rs"
[dependencies]
# Core / General
anyhow = "1.0"
colored = "3.0" # newer than 2.0
colored = "3.0"
rand = "0.9"
rustyline = "15.0"
sysinfo = { version = "0.36", features = ["multithread"] }
rustyline = "17.0.2"
sysinfo = { version = "0.37.2", features = ["multithread"] }
# CLI & Async runtime
clap = { version = "4.5", features = ["derive"] }
@@ -22,19 +22,19 @@ tokio = { version = "1.44", features = ["full", "process", "fs", "io-std", "rt-m
# HTTP & Web
reqwest = { version = "0.12", features = ["json", "cookies", "socks"] }
h2 = "0.3"
http = "0.2"
h2 = "0.4.12" # Required by http2 exploit module
http = "1.3.1" # Required by axum 0.8
bytes = "1.0"
tokio-rustls = "0.24"
tokio-rustls = "0.26.4"
url = "2.5"
quick-xml = "0.37"
quick-xml = "0.38.4"
data-encoding = "2.5"
semver = "1.0"
# Crypto & Encoding
aes = "0.8"
cipher = "0.4"
md5 = "0.7"
md5 = "0.8.0"
sha2 = "0.10"
hex = "0.4"
flate2 = "1.0"
@@ -42,19 +42,19 @@ base64 = "0.22"
# Networking & Protocols
tokio-socks = "0.5"
socket2 = { version = "0.5", features = ["all"] }
pnet_packet = "0.34"
socket2 = { version = "0.6.1", features = ["all"] }
pnet_packet = "0.35.0"
ipnet = "2.11"
ipnetwork = "0.20"
regex = "1.11" # newest listed
ipnetwork = "0.21.1"
regex = "1.11"
which = "8.0"
# FTP
async_ftp = "6.0"
suppaftp = { version = "6.3", features = ["async", "async-native-tls", "native-tls"] }
suppaftp = { version = "7.0.7", features = ["tokio", "tokio-async-native-tls", "native-tls"] }
native-tls = "0.2"
rustls = "0.23"
webpki-roots = "0.26"
webpki-roots = "1.0.4"
# Telnet
threadpool = "1.8"
@@ -73,7 +73,7 @@ libc = "0.2"
walkdir = "2.5"
# WebSocket (Spotube exploit)
tokio-tungstenite = "0.26"
tokio-tungstenite = "0.28.0"
# Futures
futures = "0.3"
@@ -85,18 +85,18 @@ serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
# API Server (Axum)
axum = "0.7"
axum = "0.8.7"
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
uuid = { version = "1.10", features = ["v4"] }
# DNS
hickory-client = { version = "0.24", features = ["dnssec"] }
hickory-proto = "0.24"
hickory-client = "0.25.2"
hickory-proto = "0.25.2"
# Misc utilities
once_cell = "1.19"
home = "0.5" # updated for edition 2024 compatibility
home = "0.5"
[build-dependencies]
regex = "1.11"