cargo-readme 3.3.2

A cargo subcommand to generate README.md content from doc comments
Documentation
.PHONY: check build test fmt fmt-check clippy clippy-fix install ci publish-dry-run

check:
	cargo check

build:
	cargo build

test:
	cargo test --all-features

fmt:
	cargo fmt

fmt-check:
	cargo fmt -- --check

clippy:
	cargo clippy --all-features --tests -- -D warnings

clippy-fix:
	cargo clippy --all-features --tests --fix --allow-dirty --allow-staged

install:
	$(eval TMPDIR := $(shell mktemp -d))
	cargo install --path . --root $(TMPDIR)
	rm -rf $(TMPDIR)

ci: check fmt-check clippy test build install

publish-dry-run: ci
	cargo publish --dry-run