From e30709d907ae97717940bb5cab005d54ba25e468 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 2 Feb 2026 19:33:46 -0600 Subject: [PATCH] bit better --- justfile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/justfile b/justfile index c2eb330..cdcc83d 100644 --- a/justfile +++ b/justfile @@ -1,24 +1,25 @@ ui := "-i" file := "~/dev/lumina-iced/test_presentation.lisp" -export RUSTC_WRAPPER=sccache +export RUSTC_WRAPPER := "sccache" +export RUST_LOG := "debug" default: just --list build: - RUST_LOG=debug cargo build + cargo build sbuild: - RUST_LOG=debug sccache cargo build + sccache cargo build run: - RUST_LOG=debug cargo run -- {{ui}} + cargo run -- {{ui}} run-release: - RUST_LOG=debug cargo run --release -- {{ui}} + cargo run --release -- {{ui}} run-file: - RUST_LOG=debug cargo run -- {{ui}} {{file}} + cargo run -- {{ui}} {{file}} clean: - RUST_LOG=debug cargo clean + cargo clean test: - RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture + cargo test --benches --tests --all-features -- --nocapture profile: cargo flamegraph -- {{ui}}