.PHONY: build test publish clean

build:
	cargo build --release

test:
	cargo test

publish: test
	cargo publish

clean:
	cargo clean
