-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
44 lines (37 loc) · 1.06 KB
/
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
36
37
38
39
40
41
42
43
44
[package]
name = "connman"
version = "0.2.0"
authors = ["Jon Magnuson <jon.magnuson@gmail.com>"]
description = "A ConnMan library that abstracts the D-Bus layer"
repository = "https://github.com/jmagnuson/connman-rs"
documentation = "https://docs.rs/connman"
readme = "README.md"
categories = ["api-bindings", "asynchronous", "network-programming", "os::unix-apis"]
keywords = ["connman", "dbus", "wifi", "networking", "tokio"]
edition = "2018"
license = "MIT/Apache-2.0"
[lib]
name = "connman"
path = "src/lib.rs"
[[example]]
name = "wifi_connect"
path = "examples/wifi_connect.rs"
[[example]]
name = "wifi_scan_list"
path = "examples/wifi_scan_list.rs"
[[example]]
name = "wifi_introspect"
path = "examples/wifi_introspect.rs"
required-features = ["introspection"]
[features]
default = []
introspection = ["xml-rs"]
[dependencies]
dbus = { git = "https://github.com/diwic/dbus-rs" }
dbus-tokio = { git = "https://github.com/diwic/dbus-rs" }
thiserror = "1.0.11"
tokio = "0.2.13"
xml-rs = { version = "0.3", optional = true }
[dev-dependencies]
hex = "0.3"
structopt = "0.2"