- Updated all dependencies - Updated Rust edition to 2024 - Nix shell from flake - Added justfile - Mirgrate all changes to various packages
20 lines
210 B
Makefile
Executable File
20 lines
210 B
Makefile
Executable File
#!/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
|