.PHONY: all build test clean

all: build
build:
	cargo build
test:
	cargo test
clean:
	cargo clean
