all:
just --justfile {{justfile()}} fmt
just --justfile {{justfile()}} check
just --justfile {{justfile()}} clippy
just --justfile {{justfile()}} test
lint:
just --justfile {{justfile()}} fmt
just --justfile {{justfile()}} check
just --justfile {{justfile()}} clippy
clippy:
cargo clippy --all-targets --all-features
check:
cargo check --all-targets --all-features
fmt:
cargo fmt --all
test:
cargo insta test
test-review:
cargo insta test --review