mirror of
https://github.com/sadoyan/aralez.git
synced 2026-05-30 03:44:06 +08:00
27 lines
506 B
Makefile
27 lines
506 B
Makefile
update:
|
|
cargo update --verbose
|
|
|
|
features:
|
|
cargo features
|
|
|
|
checkup:
|
|
cargo clippy --workspace --all-targets --all-features -- -D warnings
|
|
cargo check --workspace --all-targets --all-features
|
|
# cargo shear
|
|
# cargo machete
|
|
cargo audit
|
|
|
|
fix:
|
|
cargo fix
|
|
|
|
fix-all:
|
|
cargo fix --all
|
|
cargo clippy --workspace --all-targets --all-features --fix
|
|
|
|
test:
|
|
cargo test --workspace --all-targets --all-features
|
|
|
|
.PHONY: update features checkup fix fix-all test run pg-migrate
|
|
|
|
# -- ⚝ by Dave -- in NeoVim ⚝ --
|