auth-callback-watcher/Cargo.toml

28 lines
785 B
TOML
Raw Permalink Normal View History

2024-02-11 14:16:43 +11:00
[package]
2024-02-12 08:35:14 +11:00
name = "tesla-auth-callback-watcher"
2024-06-02 11:53:27 +10:00
version = "1.0.1"
2024-02-11 14:16:43 +11:00
edition = "2021"
2024-06-02 11:53:27 +10:00
license = "Apache-2.0"
description = "Auth callback watcher for tesla-charge-controller"
authors = ["Alex Janka"]
2024-02-11 14:16:43 +11:00
2024-06-02 11:53:27 +10:00
[package.metadata.deb]
maintainer-scripts = "packaging/service/"
systemd-units = { enable = false }
depends = ""
assets = [["target/release/tesla-auth-callback-watcher", "usr/bin/", "755"]]
2024-02-11 14:16:43 +11:00
[dependencies]
rocket = "0.5.0"
log = "0.4.20"
env_logger = "0.11.1"
2024-02-12 08:35:14 +11:00
rand = "0.8"
lazy_static = "1.4"
2024-05-25 16:15:30 +10:00
reqwest = { version = "0.12.4", features = ["json"] }
2024-02-12 09:52:53 +11:00
alex-utils = { git = "https://git.alexjanka.com/alex/alex-utils" }
2024-02-12 11:51:50 +11:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tesla-common = { git = "https://git.alexjanka.com/alex/tesla-common" }
chrono = "0.4"