1 2 3 4 5 6 7 8 9 10 11 12 13
.PHONY: build test lint bench build: cargo build --verbose test: cargo test --verbose -- --test-threads=1 lint: cargo clippy --release --all --tests --verbose -- -D clippy::all -D warnings bench: cargo +nightly bench -- --test-threads=1