From 9716019cfb888333cb903aeda186dc089d9eb33c Mon Sep 17 00:00:00 2001 From: networkException Date: Thu, 12 Sep 2024 03:30:01 +0200 Subject: [PATCH] Dependencies: Add sd_notify --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index dde7c6b..9162b26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -288,6 +288,12 @@ version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" +[[package]] +name = "sd-notify" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4646d6f919800cd25c50edb49438a1381e2cd4833c027e75e8897981c50b8b5e" + [[package]] name = "secrets-file-builder" version = "0.3.0" @@ -295,6 +301,7 @@ dependencies = [ "anyhow", "clap", "handlebars", + "sd-notify", "serde_json", "url-escape", ] diff --git a/Cargo.toml b/Cargo.toml index 1ebb837..235233f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,5 +12,6 @@ repository = "https://git.nwex.de/networkException/secrets-file-builder" anyhow = "1.0.88" clap = { version = "4.5.17", features = ["derive"] } handlebars = "5.1.0" +sd-notify = "0.4.2" serde_json = "1.0.114" url-escape = "0.1.1"