From dab8fc1735b97199f27d0acd535a0cfda41cf920 Mon Sep 17 00:00:00 2001 From: networkException Date: Thu, 12 Sep 2024 01:54:43 +0200 Subject: [PATCH] Dependencies: Add anyhow --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 43b7d5a..a194b10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,12 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "anyhow" +version = "1.0.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e1496f8fb1fbf272686b8d37f523dab3e4a7443300055e74cdaa449f3114356" + [[package]] name = "block-buffer" version = "0.10.4" @@ -179,6 +185,7 @@ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" name = "secrets-file-builder" version = "0.1.0" dependencies = [ + "anyhow", "handlebars", "serde_json", "url-escape", diff --git a/Cargo.toml b/Cargo.toml index 3bea173..cee6d62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ repository = "https://git.nwex.de/networkException/secrets-file-builder" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +anyhow = "1.0.88" handlebars = "5.1.0" serde_json = "1.0.114" url-escape = "0.1.1"