build:
    cargo build --release

test:
    cargo test

check:
    cargo check

clean:
    cargo clean

fmt:
    cargo fmt

lint:
    cargo clippy -- -D warnings

doc:
    cargo doc --no-deps --open

alias t := test
alias b := build
alias c := check
