changelogs 0.6.3

Manage versioning and changelogs for Cargo workspaces
Documentation
.PHONY: build release clean check test fix install run

build:
	cargo build

# make run ARGS="status"
run:
	cargo run -q -- $(ARGS)

release:
	cargo build --release

install:
	cargo install --path .

clean:
	cargo clean

test:
	cargo test -- --quiet

check:
	cargo fmt --check
	cargo clippy -- -D warnings
	cargo test -- --quiet
	cargo build

fix:
	cargo fmt
	cargo clippy --fix --allow-dirty --allow-staged