.PHONY: build
build: fmt
cargo build --all-features
.PHONY: check
check:
cargo clippy --all-features -- --no-deps
cargo machete
cargo test --tests --all-features -- --show-output --test-threads=1
.PHONY: fmt
fmt:
cargo fmt --all
.PHONY: clean
clean:
cargo clean
.PHONY: outdated
outdated:
cargo install --locked cargo-outdated
cargo outdated -R