From 136e245759a025cadf164dfa5b696b1918a9a4a9 Mon Sep 17 00:00:00 2001 From: Patrick Auernig Date: Sun, 29 Sep 2024 14:41:05 +0200 Subject: [PATCH] Add rust library crate template to outputs --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index e07cc71..986dc33 100644 --- a/flake.nix +++ b/flake.nix @@ -7,6 +7,11 @@ path = ./templates/rust/workspace; description = "Cargo based rust project using a virtual workspace"; }; + + rust-lib = { + path = ./templates/rust/crate-lib; + description = "Cargo based rust library crate"; + }; }; }; }