1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.PHONY: format format: cargo fmt .PHONY: lint lints: cargo clippy --workspace --all-targets --features "dispatch" -- -D warnings .PHONY: test test: cargo test --features "dispatch" -- --nocapture --test-threads=1 .PHONE: bench bench: cargo bench