mirror of
https://codeberg.org/icewind/mitemp-prometheus.git
synced 2026-06-03 09:04:13 +02:00
23 lines
765 B
TOML
23 lines
765 B
TOML
[package]
|
|
name = "mitemp-prometheus"
|
|
version = "0.3.0"
|
|
authors = ["Robin Appelman <robin@icewind.nl>"]
|
|
edition = "2024"
|
|
description = "Expose Xiaomi MI Temperature and Humidity Sensor to prometheus"
|
|
license = "MIT/Apache-2.0"
|
|
rust-version = "1.86.0"
|
|
|
|
[dependencies]
|
|
dotenvy = "0.15.7"
|
|
main_error = "0.1.2"
|
|
tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread", "signal"] }
|
|
warp = { version = "0.4.2", features = ["server"] }
|
|
mitemp = "0.5.0"
|
|
tokio-stream = { version = "0.1.18", features = ["net"] }
|
|
btleplug = { version = "0.12.0", features = ["serde"] }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = "0.3.23"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
toml = "1.0.7"
|
|
secretfile = "0.1.1"
|
|
clap = { version = "4.5.61", features = ["derive"] }
|