-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 1.07 KB
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 = "mesh_cli"
version = "0.1.0"
authors = ["AndrewGi <andrew@gilbrough.com>"]
edition = "2018"
readme = "README.md"
[badges]
maintenance = {status ="actively-developed"}
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["mesh", "pcap", "btle_usb", "btle_bluez"]
btle_usb = ["btle/hci_usb"]
btle_bluez = ["btle/bluez_socket"]
mesh = ["bluetooth_mesh"]
pcap = ["pcap-file"]
[dependencies]
bluetooth_mesh = {path = "../", features=["full_stack", "serde-1"], optional = true}
clap = "2.33.0"
serde_json = "1.0"
slog = "2.5.2"
slog-term = "2.4.2"
tokio = {version = "0.3", features=["net", "time", "rt"]}
futures-core = {version = "0.3", default_features = false}
futures-io = {version = "0.3", default_features = false}
futures-util = {version = "0.3", default_features = false}
driver_async = {version = "0.0.3", path="../async_driver"}
pcap-file = {version = "1.1.1", optional = true}
libc = "0.2.69"
btle = {path = "../btle", features= ["std"]}
usbw = {path = "../../usbw", version="0.0.2"}
once_cell = "1.4"