easee-controller/Cargo.toml

22 lines
737 B
TOML

[package]
name = "easee-controller"
version = "0.1.0"
edition = "2021"
description = "Software load-balancer and control endpoint for Easee chargers"
authors = ["Maxime Augier <max@xolus.net>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.11", features = ["derive", "env"] }
easee = { path = "../easee", features = ["tungstenite"] }
humantime = "2.1.0"
serde = { version = "1.0.205", features = ["derive"] }
serde_json = "1.0.121"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tungstenite = { version = "0.23.0", optional = true, features = ["rustls-tls-native-roots"] }
ureq = { version = "2.10.0", features = ["json"] }