-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 900 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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "netlink_wi"
version = "0.8.0"
authors = [
"Olli Paakkunainen <olli@paakkunainen.fi>",
"Adarsh Krishnan <adarshk7@gmail.com>",
]
edition = "2024"
description = """
A library to retrieve information about wireless hardware
in Linux operating system using netlink protocol.
"""
categories = ["os::linux-apis"]
keywords = ["netlink", "linux", "wifi", "nl80211"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/uption/netlink_wi"
include = ["**/*.rs", "Cargo.toml", "LICENSE"]
[lib]
name = "netlink_wi"
path = "src/lib.rs"
[dependencies]
bitflags = "2.8"
log = "0.4"
neli = "0.7.1"
neli-proc-macros = "0.2.1"
nix = "0.30"
[dev-dependencies]
simple_logger = "5.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[features]
default = ["sync"]
sync = ["neli/sync"]
async = ["neli/async"]
[package.metadata.docs.rs]
all-features = true