.PHONY: build run format

build:
	cargo build

run: build
	cargo run

format:
	cargo fmt
