1 2 3 4 5 6 7 8 9 10 11 12 13
all: clean bench test build clean: cargo clean build: cargo build --release --benches --timings=html --jobs=4 -Zunstable-options test: cargo test -- --test-threads 8 bench: cargo bench --timings=html --jobs=8 -Zunstable-options