This commit is contained in:
Moritz Ruth 2024-09-14 20:53:22 +02:00
parent 5c8e216809
commit 399686857f
Signed by: moritzruth
GPG key ID: C9BBAB79405EE56D
2 changed files with 9 additions and 8 deletions

11
Cargo.lock generated
View file

@ -89,9 +89,9 @@ dependencies = [
[[package]]
name = "anyhow"
version = "1.0.69"
version = "1.0.88"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
checksum = "4e1496f8fb1fbf272686b8d37f523dab3e4a7443300055e74cdaa449f3114356"
[[package]]
name = "arbitrary"
@ -910,7 +910,7 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]]
name = "hassliebe"
version = "1.1.0"
version = "1.1.1"
dependencies = [
"anyhow",
"base64",
@ -2024,11 +2024,12 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.93"
version = "1.0.128"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
dependencies = [
"itoa",
"memchr",
"ryu",
"serde",
]

View file

@ -1,6 +1,6 @@
[package]
name = "hassliebe"
version = "1.1.0"
version = "1.1.1"
edition = "2021"
license = "BlueOak-1.0.0"
authors = ["Moritz Ruth <dev@moritzruth.de>"]
@ -10,7 +10,7 @@ repository = "https://git.moritzruth.de/moritzruth/Hassliebe"
dry_run = [] # will prevent some actions like shutting down
[dependencies]
anyhow = "1.0.69"
anyhow = "1.0.88"
base64 = "0.22.1"
env_logger = "0.11.5"
exitcode = "1.1.2"
@ -23,7 +23,7 @@ rand = "0.8.5"
regex = "1.7.1"
rumqttc = "0.24.0"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
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"