-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (29 loc) · 875 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
26
27
28
29
30
31
32
33
34
35
[package]
name = "nl80211-rs"
version = "0.1.1"
authors = ["Erik Svensson <[email protected]>"]
build = "build.rs"
description="nl80211 library in Rust"
readme = "README.md"
license="MIT"
repository="https://github.com/blueluna/nl80211-rs"
keywords = ["netlink", "nl80211", "80211"]
edition = "2018"
[workspace]
members = [ "nl80211-buildtools" ]
[build-dependencies]
nl80211-buildtools = { path = "nl80211-buildtools", version = "0.1" }
[dependencies]
bitflags = "1.0"
byteorder = "1.3"
encoding = "0.2"
netlink-rust = { git = "https://github.com/blueluna/netlink-rs", branch = "master" }
[dev-dependencies]
libc = "0.2"
mio = { version = "0.8", features = ["os-ext", "os-poll"] }
structopt = { version = "0.3", default-features = false }
[badges]
travis-ci = { repository = "blueluna/nl80211-rs", branch = "master" }
[profile.release]
lto = true
panic = 'abort'