-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
25 lines (23 loc) · 825 Bytes
/
Cargo.toml
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
[package]
name = "wifi-ctrl"
version = "0.2.5"
edition = "2021"
authors = ["Louis Thiery <thiery.louis@gmail.com>"]
description = "Tokio-based runtimes for communicating with hostapd and wpa-supplicant"
license = "Apache-2.0"
repository = "https://github.com/novalabsxyz/wifi-ctrl"
readme = "README.md"
keywords = ["hostapd", "wpa-supplicant", "wpa_supplicant", "wpa-cli", "wifi"]
[dependencies]
hex = "0.4"
log = { version = "0" }
serde = {version = "1", features = ["derive"] }
thiserror = "1"
tempfile = "3"
tokio = { version = "1", default-features = false, features = ["net", "rt", "sync", "macros", "time"] }
[dev-dependencies]
env_logger = "0"
network-interface = "1"
tokio = { version = "1", features = ["rt-multi-thread", "io-std", "io-util"] }
tokio-util ={ version = "0", features = ["codec"] }
futures = "0"