blob: bfadb933ac38c0d3b62928ac5ac051443d5b3fc0 [file] [log] [blame]
SHELL = /bin/bash
DIR=$(shell pwd)
fmt:
cd $(DIR); cargo fmt -- --check
clippy:
cd $(DIR); cargo clippy --all-targets --all-features -- -D warnings
test:
cd $(DIR); cargo test --workspace -- --test-threads=4
check-cargo-toml:
cd $(DIR); cargo sort --workspace --check