all: build test bench

build:
	rustup run stable cargo build

test:
	rustup run stable cargo test

bench:
	rustup run nightly cargo bench

release:
	rustup run stable cargo publish
