[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]
eframe = "0.27"
egui = "0.27"
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream", "cookies", "gzip", "brotli", "deflate", "socks"] }
native-tls = "0.2"
clap = { version = "4.5", features = ["derive"] }
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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]
opt-level = 3
strip = true
lto = true
codegen-units = 1
panic = "abort"
[build-dependencies]
winres = "0.1"