htool 3.0.0

A multi-threaded networking utility and vulnerability scanner GUI written in Rust using egui.
[package]
name = "htool"
version = "3.0.0"
edition = "2021"
authors = ["Resolutefemi"]
description = "A multi-threaded networking utility and vulnerability scanner GUI written in Rust using egui."
license = "MIT"
repository = "https://github.com/Resolutefemi/ultimate_hacker_toolkit"
readme = "README.md"
keywords = ["scanner", "vulnerability", "network", "toolkit", "gui"]
categories = ["network-programming", "command-line-utilities", "gui"]

[[bin]]
name = "htool"
path = "src/cli.rs"

[[bin]]
name = "htool-gui"
path = "src/main.rs"

[dependencies]
# GUI
eframe = "0.27"
egui = "0.27"

# Async networking
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream", "cookies", "gzip", "brotli", "deflate", "socks"] }
native-tls = "0.2"

# CLI & config
clap = { version = "4.5", features = ["derive"] }
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# Utilities
chrono = "0.4"
url = "2.5"
regex = "1.10"
rand = "0.8"
futures = "0.3"
rfd = "0.14"
governor = "0.6"
maud = "0.25"
once_cell = "1.19"
async-trait = "0.1"
mimalloc = "0.1.52"
base64 = "0.22"
urlencoding = "2.1"
hickory-resolver = "0.24"

[profile.release]
# High optimisation level (3) for speed and memory
opt-level = 3

# Strip debug symbols to shrink binary size and reduce load memory
strip = true

# Use LTO for whole‑program optimisation
lto = true

# Use a single codegen unit to reduce memory fragmentation
codegen-units = 1

# Abort on panic (no backtraces)
panic = "abort"

[build-dependencies]
winres = "0.1"