34 lines
955 B
TOML
34 lines
955 B
TOML
[package]
|
|
name = "hassliebe"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
homepage = "https://git.moritzruth.de/moritzruth/Hassliebe"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
dry_run = [] # will prevent some actions like shutting down
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.69"
|
|
base64 = "0.21.0"
|
|
battery = "0.7.8"
|
|
env_logger = "0.10.0"
|
|
exitcode = "1.1.2"
|
|
image = "0.24.5"
|
|
json = "0.12.4"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.17"
|
|
notify-rust = { version = "4.8.0", features = ["images"] }
|
|
rand = "0.8.5"
|
|
regex = "1.7.1"
|
|
rumqttc = "0.20.0"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
sysinfo = { version = "0.28.2", default-features = false }
|
|
tokio = { version = "1.25.0", features = ["full"] }
|
|
toml = "0.7.2"
|
|
users = "0.11.0"
|
|
validator = { version = "0.16.0", features = ["derive"] }
|
|
void = "1.0.2"
|
|
zbus = { version = "3.10.0", default-features = false, features = ["tokio"] }
|