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