
build:
	cargo build

test:
	cargo test

format:
	cargo fmt

lint:
	cargo clippy

clean:
	cargo clean

.PHONY: format, lint, build, clean
