Compare commits

..

No commits in common. "c2a73f4de7a52ff299ec6a861ad17f55e4e690fa" and "24666266d3fc8694f164eedfd9b694c81bcda48c" have entirely different histories.

3 changed files with 4 additions and 10 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

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