coverage-prepare 0.3.1

Convert coverage data to HTML reports, LCOV files or terminal tables
.DEFAULT_GOAL := all

.PHONY: build-prod
build-prod:
	cargo build --release

.PHONY: format
format:
	cargo fmt

.PHONY: lint
lint:
	cargo fmt --version
	cargo fmt --all -- --check
	cargo clippy --version
	cargo clippy -- -D warnings -A incomplete_features
	cargo doc

.PHONY: all
all: format lint