From 311c66047f7187feaf4ed33eea0cc64baf933874 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 5 Apr 2021 00:57:16 +0200 Subject: add utility program This can be used to write configs in dhall (instead of plain json), combined with some input validation and (optionally) automatic encryption via the age rust crate. --- utils/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 utils/Cargo.toml (limited to 'utils/Cargo.toml') diff --git a/utils/Cargo.toml b/utils/Cargo.toml new file mode 100644 index 0000000..566d604 --- /dev/null +++ b/utils/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "rust" +version = "0.1.0" +authors = ["stuebinm "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +serde = { version = "1.0", features = [ "derive" ] } +serde_dhall = "0.10.0" +serde_json = "1.0.64" +age = "0.5.1" +structopt = "0.3.21" +secrecy = "0.7.0" -- cgit v1.2.3