[package]
edition = "2021"
name = "wifiscan"
version = "0.4.0"
authors = ["cybrly"]
build = false
exclude = [
"rtl8812au/",
"handshakes/",
"*.pcap",
"*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wireless network scanner TUI with monitor mode, handshake capture, deauth, and evil twin"
homepage = "https://github.com/cybrly/wifiscan"
readme = "README.md"
keywords = [
"wifi",
"wireless",
"scanner",
"monitor-mode",
"security",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/cybrly/wifiscan"
[lib]
name = "wifiscan"
path = "src/lib.rs"
[[bin]]
name = "wifiscan"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.ctrlc]
version = "3"
features = ["termination"]
[dependencies.libc]
version = "0.2"
[dependencies.libwifi]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.pcap]
version = "2"
[dependencies.radiotap]
version = "1.3.0"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[profile.release]
opt-level = 3
lto = true
strip = true