Files

21 lines
206 B
Makefile

build:
cargo build
release:
cargo build --release
run *FLAGS:
cargo run -- {{FLAGS}}
check:
cargo check
clippy:
cargo clippy -- -D warnings
fmt:
cargo fmt
test:
cargo test