.DEFAULT_GOAL := build

.PHONY: build
build: target/doc
	cargo build

target/doc: Cargo.*
	cargo doc

.PHONY: lint
lint:
	cargo +nightly clippy -- -Wclippy::pedantic
