From f054cbabc967a7fc4b02786052ccec835df1b379 Mon Sep 17 00:00:00 2001 From: Trey Lowerison <19714082+tlowerison@users.noreply.github.com> Date: Tue, 31 Oct 2023 16:50:56 -0700 Subject: [PATCH] set cargo-deny to use --all-features by default --- .pre-commit-config.yaml | 1 - deny.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 36a09d2..2ddd228 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -58,7 +58,6 @@ repos: args: - deny - check - - --all-features language: system types: [rust] always_run: true diff --git a/deny.toml b/deny.toml index 32a9768..0f57462 100644 --- a/deny.toml +++ b/deny.toml @@ -39,7 +39,7 @@ targets = [ # If true, metadata will be collected with `--all-features`. Note that this can't # be toggled off if true, if you want to conditionally enable `--all-features` it # is recommended to pass `--all-features` on the cmd line instead -all-features = false +all-features = true # If true, metadata will be collected with `--no-default-features`. The same # caveat with `all-features` applies no-default-features = false