Compare commits

..

2 Commits

Author SHA1 Message Date
Jan-Bulthuis
c2a73f4de7 feat: release 0.2.0 2026-07-19 21:17:12 +02:00
Jan-Bulthuis
085ddaa0bf feat: add syntax and themes to container 2026-07-19 21:12:17 +02:00
3 changed files with 10 additions and 4 deletions

2
Cargo.lock generated
View File

@ -1417,7 +1417,7 @@ dependencies = [
[[package]]
name = "karnaugh"
version = "0.1.5"
version = "0.2.0"
dependencies = [
"axum",
"clap",

View File

@ -1,6 +1,6 @@
[package]
name = "karnaugh"
version = "0.1.5"
version = "0.2.0"
edition = "2024"
[dependencies]

View File

@ -56,7 +56,7 @@
};
packages.karnaugh = pkgs.rustPlatform.buildRustPackage (final: {
pname = "karnaugh";
version = "0.1.5";
version = "0.2.0";
src = self;
cargoLock.lockFile = ./Cargo.lock;
});
@ -71,7 +71,13 @@
};
config = {
Entrypoint = [ "/bin/karnaugh" ];
Entrypoint = [
"/bin/karnaugh"
"--syntax-root"
"${packages.syntax}"
"--themes-root"
"${packages.themes}"
];
};
};
packages.default = packages.karnaugh;