From 7c84edcceafcbd5dc388b7fc122b519f7f60507a Mon Sep 17 00:00:00 2001 From: Joe Caulfield Date: Fri, 25 Oct 2024 09:29:08 +0400 Subject: [PATCH] clients: rust: add `--all-features` to lint --- scripts/client/lint-rust.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/client/lint-rust.mjs b/scripts/client/lint-rust.mjs index 01d3972..ecce152 100644 --- a/scripts/client/lint-rust.mjs +++ b/scripts/client/lint-rust.mjs @@ -11,6 +11,7 @@ import { // ['--arg1', '--arg2', ...cliArguments()] const lintArgs = [ '-Zunstable-options', + '--all-features', '--', '--deny=warnings', ...cliArguments()