#!/usr/bin/env just --justfile

fmt:
    cargo +nightly fmt --all -- --config format_code_in_doc_comments=true

check:
    cargo check --no-default-features
    cargo check --all-features

clippy:
    cargo clippy --no-default-features
    cargo clippy --all-features

test:
    cargo test --no-default-features
    cargo test --all-features

precommit: fmt check clippy test
