-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
35 lines (33 loc) · 865 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 = "mijia"
version = "0.7.1"
authors = [
"Luis Félix <[email protected]>",
"Andrew Walbran <[email protected]>",
"David Laban <[email protected]>",
]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A library for connecting to Xiaomi Mijia 2 Bluetooth temperature/humidity sensors."
repository = "https://github.com/alsuren/mijia-homie/"
keywords = ["ble", "bluetooth", "humidity", "temperature"]
categories = ["hardware-support"]
[dependencies]
bluez-async = "0.8.0"
futures = "0.3.31"
log = "0.4.22"
thiserror = "2.0.9"
tokio = "1.42.0"
tokio-stream = "0.1.17"
uuid = "1.11.0"
[dev-dependencies]
backoff = { version = "0.4.0", features = ["tokio"] }
chrono = "0.4.39"
eyre = "0.6.12"
pretty_env_logger = "0.5.0"
tokio = { version = "1.42.0", features = [
"macros",
"rt",
"rt-multi-thread",
"time",
] }