From bd7b43d9cdd9dddde0e4173b538fafa1a52c1ad3 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:40:27 -0500 Subject: [PATCH 1/2] chore: update MSRV to 1.75 We use features in code from 1.72, and `[lints]` is from 1.75, so we should update MSRV to 1.75 closes #5965 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e88f19cb2959..080fc48bf87e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ rust.rust_2018_idioms = "deny" [workspace.package] version = "0.1.0-alpha.13" edition = "2021" -rust-version = "1.70" +rust-version = "1.75" license = "MIT OR Apache-2.0" homepage = "https://paradigmxyz.github.io/reth" repository = "https://github.com/paradigmxyz/reth" From 3da733d1ca1254bb2ad6c65c37ca1753bd41de09 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Mon, 8 Jan 2024 11:08:45 -0500 Subject: [PATCH 2/2] update CI MSRV --- .github/workflows/lint.yml | 2 +- clippy.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 293831dcc2d5..b23830912c1f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -47,7 +47,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: - toolchain: "1.70" # MSRV + toolchain: "1.75" # MSRV - uses: Swatinem/rust-cache@v2 with: cache-on-failure: true diff --git a/clippy.toml b/clippy.toml index e7b6d30ab98e..3d11f32f43d9 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1,3 +1,3 @@ -msrv = "1.70" +msrv = "1.75" ignore-interior-mutability = ["bytes::Bytes", "reth_primitives::trie::nibbles::Nibbles"] too-large-for-stack = 128