1
0
Fork 0
mirror of https://codeberg.org/icewind/mitemp-rs.git synced 2026-06-03 17:24:08 +02:00
This commit is contained in:
Robin Appelman 2024-11-17 17:13:54 +01:00
commit c6efcb49ac
9 changed files with 1260 additions and 11 deletions

View file

@ -1,19 +1,20 @@
[package]
name = "mitemp"
version = "0.3.1"
version = "0.4.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
description = "Read Xiaomi MI Temperature and Humidity Sensor over BLE"
license = "MIT/Apache-2.0"
rust-version = "1.70.0"
[dependencies]
btleplug = "0.9.2"
num_enum = "0.5.7"
btleplug = "0.11.6"
num_enum = "0.7.3"
tokio-stream = "0.1.8"
uuid = "0.8.2"
log = "0.4.16"
uuid = "1.11.0"
tracing = "0.1.40"
[dev-dependencies]
main_error = "0.1"
env_logger = "0.9"
tracing-subscriber = "0.3.18"
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }