# test everything
test:
  cargo nextest run
exec *ARGS:
  cargo run -- {{ARGS}}

# format
fmt:
  cargo fmt

# lint with clippy
lint:
  cargo clippy

publish:
  cargo publish

build:
  cargo build -r
