fmt:
	cargo fmt

lint:
	cargo check
	cargo clippy -- -D warnings
	cargo fmt --check

test:
	cargo test --tests --no-fail-fast

bench:
	cargo +nightly bench
