mirror of
https://github.com/sadoyan/aralez.git
synced 2026-05-30 03:44:06 +08:00
24 lines
446 B
Makefile
24 lines
446 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
|
|
|
|
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
|
|
|
|
# -- ⚝ by Dave -- in NeoVim ⚝ --
|