tesla-charge-controller/charge-controller-supervisor/Cargo.toml

36 lines
918 B
TOML
Raw Permalink Normal View History

2024-12-28 18:54:21 +11:00
[package]
name = "charge-controller-supervisor"
version.workspace = true
edition = "2021"
license = "MITNFA"
description = "Monitors multiple charge controllers"
authors = ["Alex Janka"]
[package.metadata.deb]
maintainer-scripts = "debian/"
systemd-units = { enable = false }
depends = ""
[dependencies]
bitflags = { version = "2.7.0", features = ["serde"] }
2024-12-30 19:52:11 +11:00
chrono = "0.4.39"
2024-12-28 18:54:21 +11:00
clap = { version = "4.5.23", features = ["derive"] }
2024-12-30 19:52:11 +11:00
env_logger = "0.11.6"
eyre = "0.6.12"
futures = "0.3.31"
2024-12-30 20:30:45 +11:00
include_dir = "0.7.4"
2024-12-30 19:52:11 +11:00
lazy_static = "1.5.0"
log = "0.4.22"
notify-debouncer-mini = { version = "0.5.0", default-features = false }
2024-12-30 19:52:11 +11:00
prometheus = "0.13.4"
rocket = { version = "0.5.1", features = ["json"] }
2024-12-28 18:54:21 +11:00
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
2025-01-13 11:32:15 +11:00
thiserror = "2.0.11"
2024-12-28 18:54:21 +11:00
tokio = { version = "1.42.0", features = ["full"] }
tokio-modbus = "0.16.1"
tokio-serial = "5.4.4"
[lints]
workspace = true