.PHONY: all
all: format test clippy

.PHONY: format 
format:
	cargo fmt

.PHONY: test 
test:
	cargo test

.PHONY: clippy 
clippy:
	cargo clippy

