Dependencies: Remove sd_notify

This commit is contained in:
networkException 2024-12-23 17:39:11 +01:00
parent 32a2492425
commit 6959e6c3a6
Signed by: networkException
GPG key ID: E3877443AE684391
2 changed files with 1 additions and 9 deletions

9
Cargo.lock generated
View file

@ -1,6 +1,6 @@
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
version = 3 version = 4
[[package]] [[package]]
name = "anstream" name = "anstream"
@ -288,12 +288,6 @@ version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
[[package]]
name = "sd-notify"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4646d6f919800cd25c50edb49438a1381e2cd4833c027e75e8897981c50b8b5e"
[[package]] [[package]]
name = "secrets-file-builder" name = "secrets-file-builder"
version = "0.4.0" version = "0.4.0"
@ -301,7 +295,6 @@ dependencies = [
"anyhow", "anyhow",
"clap", "clap",
"handlebars", "handlebars",
"sd-notify",
"serde_json", "serde_json",
"url-escape", "url-escape",
] ]

View file

@ -12,6 +12,5 @@ repository = "https://git.nwex.de/networkException/secrets-file-builder"
anyhow = "1.0.88" anyhow = "1.0.88"
clap = { version = "4.5.17", features = ["derive"] } clap = { version = "4.5.17", features = ["derive"] }
handlebars = "5.1.0" handlebars = "5.1.0"
sd-notify = "0.4.2"
serde_json = "1.0.114" serde_json = "1.0.114"
url-escape = "0.1.1" url-escape = "0.1.1"