23 lines
474 B
Makefile
23 lines
474 B
Makefile
default:
|
|
@just --list
|
|
|
|
# Cargo build everything.
|
|
build:
|
|
cargo build --workspace --all-targets --all-features
|
|
|
|
# Cargo check everything.
|
|
check:
|
|
cargo check --workspace --all-targets --all-features
|
|
|
|
# Lint everything.
|
|
lint:
|
|
cargo +nightly clippy --workspace --all-targets --all-features -- --deny warnings
|
|
|
|
# Check the formatting
|
|
format:
|
|
cargo +nightly fmt --all --check
|
|
|
|
# Update the recent and minimal lock files.
|
|
update-lock-files:
|
|
contrib/update-lock-files.sh
|