making sure run is in debug mode so I'm considering performance

This commit is contained in:
Chris Cochrun 2025-07-04 07:14:37 -05:00
parent 9207df10ba
commit d94572201a

View file

@ -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