.PHONY: build
build:
cargo fmt --all
cargo build
.PHONY: check
check:
cargo clippy -- --no-deps
cargo machete
cargo test -- --nocapture
.PHONY: clean
clean:
cargo clean
.PHONY: outdated
outdated:
cargo install --locked cargo-outdated
cargo outdated -R