From bbb19754bdda5eda584958928b24629ed11a6c6e Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Thu, 2 Apr 2026 19:26:49 +0200 Subject: [PATCH] fix: Use correct assets path --- Cargo.lock | 2 +- Cargo.toml | 2 +- flake.nix | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4b9e38d..115dd64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "karnaugh" -version = "0.1.2" +version = "0.1.3" dependencies = [ "axum", "clap", diff --git a/Cargo.toml b/Cargo.toml index 4e5ba0c..b6cec8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "karnaugh" -version = "0.1.2" +version = "0.1.3" edition = "2024" [dependencies] diff --git a/flake.nix b/flake.nix index 2ede610..af4fe4c 100644 --- a/flake.nix +++ b/flake.nix @@ -21,9 +21,9 @@ rec { packages.karnaugh = pkgs.rustPlatform.buildRustPackage (final: { pname = "karnaugh"; - version = "0.1.2"; + version = "0.1.3"; src = self; - cargoHash = "sha256-YRSK2Vk6I1y/PhH1ZyFAYF0E6IB55So3MTs8B5df4LM="; + cargoHash = "sha256-HwwvbYf9hKBANbIoxBQFOgya3K7SwWZCPZKvLGB057U="; }); packages.container = pkgs.dockerTools.buildImage { name = "karnaugh"; @@ -31,16 +31,16 @@ copyToRoot = pkgs.buildEnv { name = "karnaugh-root"; - paths = [packages.karnaugh]; - pathsToLink = ["/bin"]; + paths = [ packages.karnaugh ]; + pathsToLink = [ "/bin" ]; }; config = { - Entrypoint = ["/bin/karnaugh"]; + Entrypoint = [ "/bin/karnaugh" ]; }; }; packages.default = packages.karnaugh; - + devShells.default = pkgs.mkShell { buildInputs = with pkgs; [ cargo