Changed devenv, added a LICENSE and created a cli/ crate

This commit is contained in:
2026-07-13 15:26:09 -05:00
parent b57d590420
commit d9cdea232c
8 changed files with 922 additions and 46 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
{
description = "Rust Starter Flake";
description = "an opensource secrets management and distribution platform.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
@@ -19,7 +19,6 @@
outputs =
{
self,
nixpkgs,
devenv,
naersk,
@@ -54,8 +53,9 @@
in
{
default = naerskLib.buildPackage {
name = "harbor";
version = "0.1.0";
src = ./.;
src = ./crates/cli;
};
}
);