diff --git a/justfile b/justfile new file mode 100644 index 00000000..68e181d5 --- /dev/null +++ b/justfile @@ -0,0 +1,26 @@ +default: + @just --list + +# Cargo build everything. +build: + cargo build --workspace --all-targets + +# Cargo check everything. +check: + cargo check --workspace --all-targets + +# Lint everything. +lint: + cargo clippy --workspace --all-targets + +# Run the formatter. +fmt: + cargo fmt --all + +# Check the formatting. +format: + cargo fmt --all --check + +# Test the workspace. +test: + cargo test --workspace --all-targets