From ee520dfbd439490c6ed74a22542c7e81dd9d8e14 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Fri, 9 Aug 2024 14:59:17 -0400 Subject: [PATCH] chore: update rust-version to match msrv (#93) * chore: update rust-version to match msrv * use 1.80 Co-authored-by: Matthias Seitz * update msrv in clippy toml * update msrv in github action --------- Co-authored-by: Matthias Seitz --- .github/workflows/lint.yml | 2 +- Cargo.toml | 2 +- clippy.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8a8bb5a..c940f6e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -59,7 +59,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: - toolchain: "1.79" # MSRV + toolchain: "1.80" # MSRV - uses: Swatinem/rust-cache@v2 with: cache-on-failure: true diff --git a/Cargo.toml b/Cargo.toml index b18827d..0fc2689 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ resolver = "2" [workspace.package] version = "0.0.0" edition = "2021" -rust-version = "1.76" +rust-version = "1.80" authors = [] license = "MIT OR Apache-2.0" repository = "https://github.com/paradigmxyz/alphanet" diff --git a/clippy.toml b/clippy.toml index ff7c668..d5cd174 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1,2 +1,2 @@ -msrv = "1.79" +msrv = "1.80" allow-dbg-in-tests = true