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: build:
RUST_LOG=debug cargo build RUST_LOG=debug cargo build
run: run:
RUST_LOG=debug cargo run --release -- {{ui}} {{file}} RUST_LOG=debug cargo run -- {{ui}} {{file}}
clean: clean:
RUST_LOG=debug cargo clean RUST_LOG=debug cargo clean
test: test:
RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture
profile: profile:
cargo flamegraph --image-width 4000 -- {{ui}} {{file}} cargo flamegraph --image-width 8000 -- {{ui}} {{file}}
alias r := run alias r := run
alias c := clean alias c := clean