salsa/justfile
2025-05-06 19:03:50 +00:00

10 lines
233 B
Makefile

test:
cargo test --workspace --all-features --all-targets --no-fail-fast
miri:
cargo +nightly miri test --no-fail-fast --all-features
loom:
RUSTFLAGS="--cfg loom" cargo check --workspace --features loom
all: test miri