.DEFAULT_GOAL: build

.PHONY: build
build:
	cargo build

.PHONY: fmt
fmt:
	cargo fmt

.PHONY: format
format: fmt

.PHONY: fmt-check
fmt-check:
	cargo fmt --check

.PHONY: test
test:
	cargo test

.PHONY: clippy
clippy:
	cargo clippy

.PHONY: ci
ci: test fmt-check clippy

.PHONY: clean
clean:
	cargo clean
