1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# Default recipe default: @just --list # Run library tests test: cargo test # Run clippy on the library clippy: cargo clippy -- -D warnings # Format code fmt: cargo fmt # Check library (default features) check: cargo check