set dotenv-load := true
set positional-arguments

help:
    @just --list --unsorted

build *ARGS:
    cargo build "$@"
alias b := build

check:
    cargo check
alias c := check

fix:
    cargo clippy --fix

run *ARGS:
    cargo run --example actix --features actix

test:
    cargo test --all-features "$@"

alias r := run

doc:
    RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features --no-deps --open