1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
.PHONY: eval test bench lint fmt check eval: cargo run --example eval test-docs: cargo run --example test_docs test: cargo test bench: cargo bench lint: cargo clippy -- -D warnings fmt: cargo fmt check: lint test