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