2024-01-07 10:08:16 +11:00
|
|
|
[package]
|
|
|
|
name = "tesla-charge-controller"
|
2024-04-08 13:38:32 +10:00
|
|
|
version = "1.2.6"
|
2024-01-07 10:08:16 +11:00
|
|
|
edition = "2021"
|
|
|
|
license = "MITNFA"
|
|
|
|
description = "Controls Tesla charge rate based on solar charge data"
|
|
|
|
authors = ["Alex Janka"]
|
2023-12-28 12:41:05 +11:00
|
|
|
|
2024-01-07 10:08:16 +11:00
|
|
|
[package.metadata.deb]
|
|
|
|
maintainer-scripts = "debian/"
|
|
|
|
systemd-units = { enable = false }
|
|
|
|
depends = ""
|
|
|
|
assets = [["target/release/tesla-charge-controller", "usr/bin/", "755"]]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-12 13:55:30 +11:00
|
|
|
teslatte = { git = "https://git.alexjanka.com/alex/teslatte" }
|
|
|
|
tesla-common = { git = "https://git.alexjanka.com/alex/tesla-common" }
|
2024-01-07 10:08:16 +11:00
|
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
ron = "0.8"
|
2023-12-28 12:41:05 +11:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-01-17 08:35:05 +11:00
|
|
|
serde_json = "1.0"
|
2024-01-07 10:08:16 +11:00
|
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
2023-12-28 12:41:05 +11:00
|
|
|
thiserror = "1.0"
|
2024-01-07 10:08:16 +11:00
|
|
|
rocket = { version = "0.5", features = ["json"] }
|
|
|
|
include_dir = "0.7"
|
2024-01-08 12:00:09 +11:00
|
|
|
chrono = "0.4"
|
2024-01-09 11:11:16 +11:00
|
|
|
prometheus = "0.13"
|
2024-01-09 11:33:11 +11:00
|
|
|
env_logger = "0.10"
|
|
|
|
log = "0.4"
|
2024-01-10 15:22:28 +11:00
|
|
|
serialport = "4.3"
|
2024-01-18 16:26:44 +11:00
|
|
|
libmodbus-rs = "0.8.3"
|
2024-01-22 10:38:34 +11:00
|
|
|
if_chain = "1.0.2"
|
2024-01-23 12:14:04 +11:00
|
|
|
notify-debouncer-mini = { version = "0.4.1", default-features = false }
|
2024-01-28 10:24:00 +11:00
|
|
|
lazy_static = "1.4"
|