From f056f8a158981b3e69615e9e6e330ea232918215 Mon Sep 17 00:00:00 2001 From: Jon C Date: Tue, 10 Mar 2026 17:05:45 +0100 Subject: [PATCH] makefile: Don't powerset with all-targets #### Problem The powerset check is a bit useless because it enables `--all-targets`, which includes dev-dependencies, which can often enable additional features. #### Summary of changes Remove `--all-targets` from the powerset job. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 92653c4c..15fcf6b1 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ format-check-%: cargo $(nightly) fmt --check --manifest-path $(call make-path,$*)/Cargo.toml $(ARGS) powerset-%: - cargo $(nightly) hack check --feature-powerset --all-targets --manifest-path $(call make-path,$*)/Cargo.toml $(ARGS) + cargo $(nightly) hack check --feature-powerset --manifest-path $(call make-path,$*)/Cargo.toml $(ARGS) semver-check-%: cargo semver-checks --manifest-path $(call make-path,$*)/Cargo.toml $(ARGS)