Added config.toml to speed up compilation

This commit is contained in:
rzuasti
2026-01-25 11:10:07 -05:00
parent a4e4ee6a50
commit 9b40bb2da8
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -0,0 +1,2 @@
[build]
target-dir = "./target"
+2 -2
View File
@@ -2,9 +2,9 @@
pkgs.rustPlatform.buildRustPackage rec { pkgs.rustPlatform.buildRustPackage rec {
pname = "oott"; pname = "oott";
version = "0.0.1"; version = "0.0.1";
src = ./.; src = ./..;
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./../Cargo.lock;
}; };
nativeBuildInputs = [pkgs.pkg-config]; nativeBuildInputs = [pkgs.pkg-config];