34 lines
927 B
TOML
34 lines
927 B
TOML
[package]
|
|
name = "hassliebe"
|
|
version = "1.1.1"
|
|
edition = "2021"
|
|
license = "BlueOak-1.0.0"
|
|
authors = ["Moritz Ruth <dev@moritzruth.de>"]
|
|
repository = "https://git.moritzruth.de/moritzruth/Hassliebe"
|
|
|
|
[features]
|
|
dry_run = [] # will prevent some actions like shutting down
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.88"
|
|
base64 = "0.22.1"
|
|
env_logger = "0.11.5"
|
|
exitcode = "1.1.2"
|
|
image = "0.25.2"
|
|
json = "0.12.4"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.17"
|
|
notify-rust = { version = "4.11.3", features = ["images"] }
|
|
rand = "0.8.5"
|
|
regex = "1.7.1"
|
|
rumqttc = "0.24.0"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.128"
|
|
sysinfo = { version = "0.31.4", default-features = false, features = ["system"] }
|
|
tokio = { version = "1.25.0", features = ["full"] }
|
|
toml = "0.8.19"
|
|
users = "0.11.0"
|
|
validator = { version = "0.18.1", features = ["derive"] }
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|