-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1.26 KB
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "llcharge"
description = "Batteries Saver Plug : Extend your batteries life with your smart plug"
readme = "README.md"
version = "0.2.0"
edition = "2021"
license-file = "LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true # Automatically strip symbols from the binary.
[dependencies]
clap = { version = "3.1.8", features = ["derive"] }
confy = "0.4.0"
serde = { version = "1.0.136", features = ["derive"] }
once_cell = "1.10.0"
ureq = { version = "2.4.0", features = ["json"] }
actix-web = "4.0.1"
actix-web-static-files = "4.0.0"
static-files = "0.2.3"
[package.metadata.deb]
maintainer = "Frédéric de Zorzi <f@idez.net>"
copyright = "2022, Frédéric de Zorzi."
extended-description = """\
Battery charge threshold detection to save batteries life. Designed for fast chargers and Shelly Plug."""
depends = "$auto"
section = "utils"
priority = "optional"
assets = [
["README.md", "usr/share/doc/llcharge/", "644"],
["chart.png", "usr/share/doc/llcharge/", "644"],
["target/release/llcharge", "usr/bin/", "755"],
["assets/llcharge.toml", "etc/", "644"],
["assets/llcharge.service", "etc/systemd/system/", "644"],
]
[build-dependencies]
static-files = "0.2.3"