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]] [[package]]
name = "karnaugh" name = "karnaugh"
version = "0.2.0" version = "0.1.5"
dependencies = [ dependencies = [
"axum", "axum",
"clap", "clap",

View File

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

View File

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