1 2 3 4 5 6 7 8 9 10 11 12 13 14
.PHONY: fmt check publish-dry publish fmt: cargo fmt --all check: cargo fmt --all --check cargo test --workspace publish-dry: check cargo publish -p draxl --dry-run publish: check cargo publish -p draxl