sculkr 0.1.4

Companion CLI for packwiz - generate modlists and track Minecraft modpack changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
default: fmt lint test

fmt:
    cargo +nightly fmt --all --check

lint:
    cargo clippy --locked --all-targets --all-features -- -D warnings

test:
    cargo nextest run --locked --all-features

msrv:
    RUSTFLAGS="" cargo +1.88.0 check --locked --all-targets --all-features

pre-push: default msrv