fmt:
cargo fmt --all -- --check
clippy:
cargo clippy --all --tests --all-features -- -D warnings
test: export RUST_BACKTRACE := full
test:
RUSTFLAGS='-D warnings' cargo test --all --all-features
ci: fmt clippy test
git diff --exit-code Cargo.lock
.PHONY: fmt clippy test ci