set dotenv-load
_default:
@just --list
#
# Formatting, linting and testing
#
format:
@cargo fmt
lint: format
@cargo clippy --all-targets --all-features -- -D warnings
fix:
@cargo clippy --all-targets --all-features --fix -- -D warnings
build-linux:
@cargo build --release --target=x86_64-unknown-linux-musl
run:
@cargo run
# Run cargo test on a package, optionally specify test
test:
@cargo test -- --show-output --nocapture