20 lines
260 B
Makefile
Executable File
20 lines
260 B
Makefile
Executable File
#!/usr/bin/env just --justfile
|
|
|
|
run:
|
|
cargo run
|
|
|
|
fmt:
|
|
cargo fmt --all
|
|
|
|
lint:
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
|
|
release:
|
|
cargo build --release
|
|
|
|
test:
|
|
cargo test --all-features --workspace
|
|
|
|
coverage:
|
|
cargo llvm-cov
|