all: release

release:
	cargo build --release

debug:
	cargo build

test:
	cargo test

check:
	cargo check

clean:
	cargo clean

fmt:
	cargo fmt

clippy:
	cargo clippy -- -D warnings

doc:
	cargo doc --no-deps --open

audit:
	cargo deny check

.PHONY: all release debug test test-release check clean fmt clippy doc audit
