From 89e48b600b01b21c2fae9c6414ddf66e0c38d7a6 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Thu, 14 Aug 2025 14:16:56 -0700 Subject: create a project skeleton with a nix flake and a Rust executable I also took the liberty of adding some Rust libraries that I know will be useful Change-Id: Id5d98d86cdce653f6706903b75e285c72f2ba4b4 --- Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b480279 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "nix-secret-manager" +version = "1.0.0" +authors = ["Irene Knapp "] +edition = "2021" + +[dependencies] +json = "0.12.4" +nix = "0.30.1" + +[dependencies.clap] +version = "4.5.17" +features = [ "derive" ] + -- cgit 1.4.1