-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
28 lines (27 loc) · 904 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
[package]
authors = ["Dylan Frankland <[email protected]>"]
edition = "2018"
name = "bluster"
version = "0.2.0"
license = "MIT"
description = "A Rust crate for implementing BLE (Bluetooth Low Energy) peripherals"
homepage = "https://github.com/dfrankland/bluster"
repository = "https://github.com/dfrankland/bluster"
keywords = ["BLE", "Bluetooth", "Bluez", "CoreBluetooth", "USB"]
categories = ["os", "api-bindings", "hardware-support"]
[dependencies]
futures = "0.3"
tokio = { version = "1.0", features = ["macros", "rt"] }
uuid = "0.8.1"
log = "0.4"
[target."cfg(any(target_os = \"linux\", target_os = \"android\"))".dependencies]
dbus = "^0.9.0"
dbus-tokio = "^0.7.0"
dbus-tree = "^0.9.1"
dbus-crossroads = "^0.3.0"
[target."cfg(any(target_os = \"macos\", target_os = \"ios\"))".dependencies]
objc = "0.2.7"
objc-foundation = "0.1.1"
objc_id = "0.1.1"
[dev-dependencies]
pretty_env_logger = "0.2"