mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
19 lines
255 B
Makefile
19 lines
255 B
Makefile
|
|
|
|
default:
|
|
@just --list
|
|
|
|
lint:
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
|
|
# Update all Cargo dependencies to the latest allowed by Cargo.toml
|
|
update-deps:
|
|
cargo update
|
|
|
|
# Run crate tests
|
|
test:
|
|
cargo test
|
|
|
|
|
|
fmt:
|
|
cargo fmt
|