From d94572201a467264548a1f08d22d566c80b62b9e Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 4 Jul 2025 07:14:37 -0500 Subject: [PATCH] making sure run is in debug mode so I'm considering performance --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index de77d95..caf42a3 100644 --- a/justfile +++ b/justfile @@ -6,13 +6,13 @@ default: build: RUST_LOG=debug cargo build run: - RUST_LOG=debug cargo run --release -- {{ui}} {{file}} + RUST_LOG=debug cargo run -- {{ui}} {{file}} clean: RUST_LOG=debug cargo clean test: RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture profile: - cargo flamegraph --image-width 4000 -- {{ui}} {{file}} + cargo flamegraph --image-width 8000 -- {{ui}} {{file}} alias r := run alias c := clean