all: cargo build clean: cargo clean check: cargo check --workspace --tests --all-features lint: cargo fmt -v --all -- --emit files cargo clippy --workspace --tests --all-features run: cargo run test: cargo test --all-features --no-fail-fast .PHONY: clean check lint run test