From e3d88e8c3975357b38ddbcc7a5042dfe25bc25f3 Mon Sep 17 00:00:00 2001 From: Nikita Galaiko Date: Tue, 14 Nov 2023 10:03:26 +0100 Subject: [PATCH] run cranky on stable --- Cranky.toml | 2 -- scripts/check.sh | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cranky.toml b/Cranky.toml index 103c4d63e..62ac4f5e7 100644 --- a/Cranky.toml +++ b/Cranky.toml @@ -75,6 +75,4 @@ allow = [ "clippy::match_wildcard_for_single_variants", "clippy::unnested_or_patterns", "clippy::similar_names", - # TODO: fixme - "clippy::struct_field_names" ] diff --git a/scripts/check.sh b/scripts/check.sh index bbbc48f9e..d182a034f 100755 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -7,8 +7,7 @@ set -o pipefail function rust() { cargo fmt --check cargo sort -c -w - # use nightly as long cranky is run in nightly on ci - cargo +nightly cranky --all-targets --all-features + cargo cranky --all-targets --all-features cargo test }