-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
37 lines (32 loc) · 853 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
36
37
[package]
name = "bluez"
version = "0.4.0"
authors = ["Ibiyemi Abiodun <[email protected]>"]
edition = "2018"
repository = "https://github.com/laptou/bluez-rs"
readme = "README.md"
description = "Control Bluetooth on Linux."
license = "MIT"
keywords = ["bluetooth", "bluez", "linux"]
exclude = ["example/*"]
[dependencies]
libc = "0.2"
thiserror = "1.0"
num-traits = "0.2"
num-derive = "0.3"
enumflags2 = "0.7"
enumflags2_derive = "0.7"
bytes = "1.0"
bitvec = "1.0"
futures = "0.3"
tokio = { version = "1.0", features = ["net", "io-util"] }
bluez-sys = { path = "sys", version = "0.4.0" }
[dev-dependencies]
anyhow = "1.0"
clap = { version = "3.1.18", features = ["derive"] }
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "io-std", "time", "sync"] }
[[example]]
name = "discover"
[[example]]
name = "list"
[workspace]