.PHONY: build build: cargo build --all --examples --all-features .PHONY: check check: cargo clippy -- --no-deps cargo test --tests --all-features -- --show-output --test-threads=1 .PHONY: bench bench: cargo bench .PHONY: fmt fmt: cargo fmt --all .PHONY: clean clean: cargo clean .PHONY: outdated outdated: cargo install --locked cargo-outdated cargo outdated -R