1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Loader justfile info: just -l # Check all check: cargo check # Build release build: cargo build --release # Bump version (patch by default, or specify: major, minor, patch) bump level="patch": cargo set-version --bump {{level}}