#!/usr/bin/env just --justfile
fmt:
cargo +nightly fmt -- --config format_code_in_doc_comments=true
check:
cargo check
cargo check --features std
clippy:
cargo clippy
cargo clippy --features std
test:
cargo test
cargo test --features std
precommit: fmt check clippy test