forked from booyaa/wifiscanner
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "wifi_scan"
version = "0.7.0"
authors = ["simon0302010 <simon@hackclub.app>"]
description = "A crate to list WiFi hotspots in your area. Fork of booyaa/wifiscanner with many improvements to make it future-proof."
repository = "https://github.com/simon0302010/wifi-scan"
documentation = "https://docs.rs/wifi_scan"
readme = "README.md"
keywords = ["wifi","hotspots","network"]
license = "Apache-2.0"
edition = "2021"
[[bin]]
name = "wifi_scan"
path = "src/bin/main.rs"
[target.'cfg(target_os = "linux")'.dependencies]
neli-wifi = "0.6.*"
nl80211-rs = "0.1.1"
netlink-rust = "0.1.1"
[target.'cfg(target_os = "windows")'.dependencies]
win32-wlan = "0.1.0"
futures = "0.3"
libwifi = "0.4.*"
[target.'cfg(target_os = "macos")'.dependencies]
objc2-core-wlan = "0.3"
objc2-foundation = "0.3"