rust-bitcoin-unsafe-fast/justfile

23 lines
474 B
Makefile
Raw Normal View History

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