-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 724 Bytes
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
[package]
name = "deconz-exporter"
description = "A very simple (and naive) Prometheus exporter for deCONZ Phoscon zigbee gateway"
edition = "2024"
rust-version = "1.85"
version = "0.1.0"
license = "MIT"
authors = ["Jaseem Abid <me@jabid.in>"]
readme = "README.md"
repository = "https://github.com/jaseemabid/deconz-exporter"
[dependencies]
chrono = {version = "0.4.42", features = ["serde"]}
clap = {version = "4.5.57", features = ["derive", "env"]}
env_logger = "0.11.8"
lazy_static = "1.5.0"
log = "0.4.22"
prometheus = "0.14.0"
reqwest = {version = "0.13.1", features = ["json", "blocking"]}
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
tiny_http = "0.12.0"
tungstenite = "0.21.0"
url = "2.5.4"