summaryrefslogtreecommitdiff
path: root/.cargo
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-08-31 00:15:14 +0200
committerHampusM <hampus@hampusmat.com>2026-08-31 00:15:14 +0200
commit05f53637e99e9874e63749124716a770fd58fd43 (patch)
treee025fb66101856c52e20437e3587a8d0438a7e86 /.cargo
parent2d8946bc44b4cf894655a0c1108afa8ce8962077 (diff)
build: add cargo aliases for doing fast compilation
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index af130b7..eed713a 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,3 +1,8 @@
+[alias]
+fcheck = "run -p xtask -- execute cargo +nightly check --config .cargo/config-nightly-fast-compile.toml"
+fbuild = "run -p xtask -- execute cargo +nightly build --config .cargo/config-nightly-fast-compile.toml"
+frun = "run -p xtask -- execute cargo +nightly run --config .cargo/config-nightly-fast-compile.toml"
+
[env]
SLANG_USE_PREBUILT = "1"