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