.PHONY: all
all:: check-features clippy test
.PHONY: check-features
check-features:
cargo hack check --feature-powerset --no-dev-deps
.PHONY: clippy
clippy:
cargo clippy --all-features --all-targets
.PHONY: test
test:
cargo nextest run --all-features
cargo test --all-features --doc
%:
$(MAKE) -C ../.. $@