1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
[private]
default:
@just --list
# run `cargo build` on everything
build:
cargo build --workspace --all-targets
# run `cargo check` on everything
check:
cargo check --workspace --all-targets
# run code formatter
format:
cargo +nightly fmt
# run tests
test: build
cargo test --all-features
# run `cargo clippy` on everything
clippy:
cargo clippy --locked --offline --workspace --all-targets -- --deny warnings
# run `cargo clippy --fix` on everything
clippy-fix:
cargo clippy --locked --offline --workspace --all-targets --fix
# Check for API changes.
check-api:
contrib/check-for-api-changes.sh
|