From 0ac61690cf09da170de11cb8e0a84b78a19349e3 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 11 Mar 2023 10:17:19 +0000 Subject: [PATCH] Enable all features when running clippy --- scripts/clippy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/clippy.sh b/scripts/clippy.sh index f462c4651..986d03325 100755 --- a/scripts/clippy.sh +++ b/scripts/clippy.sh @@ -1,3 +1,3 @@ #!/bin/sh # Run clippy for all Rust code in the project. -cargo clippy --workspace --all-targets -- -D warnings +cargo clippy --workspace --all-targets --all-features -- -D warnings