From 10a00cff8137ad456aabf6028d57e5d12083b22f Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 27 Nov 2022 16:00:25 +0900 Subject: [PATCH] Remove msrv field from .clippy.toml Since Rust 1.64, Clippy respects `rust-version` field in Cargo.toml. rust-lang/rust@b776fb8 --- .clippy.toml | 1 - .github/workflows/ci.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 .clippy.toml diff --git a/.clippy.toml b/.clippy.toml deleted file mode 100644 index 7846a3e..0000000 --- a/.clippy.toml +++ /dev/null @@ -1 +0,0 @@ -msrv = "1.47" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f64a24..7d8548c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: matrix: # When updating this, the reminder to update the minimum supported - # Rust version in Cargo.toml and .clippy.toml. + # Rust version in Cargo.toml. rust: ['1.47'] steps: - uses: actions/checkout@v3