From 4fc6c7b3ae00508c514d61ad193a378d31490ef5 Mon Sep 17 00:00:00 2001 From: Oliver Nordbjerg Date: Tue, 10 Sep 2024 15:45:07 +0200 Subject: [PATCH] chore: set msrv to 1.81 --- .github/workflows/lint.yml | 5 ++--- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c940f6e..24ffe24 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,8 +20,7 @@ jobs: - uses: Swatinem/rust-cache@v2 with: cache-on-failure: true - - run: - cargo clippy --bin alphanet --workspace --features "asm-keccak jemalloc jemalloc-prof min-error-logs min-warn-logs min-info-logs min-debug-logs min-trace-logs" + - run: cargo clippy --bin alphanet --workspace --features "asm-keccak jemalloc jemalloc-prof min-error-logs min-warn-logs min-info-logs min-debug-logs min-trace-logs" env: RUSTFLAGS: -D warnings @@ -59,7 +58,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: - toolchain: "1.80" # MSRV + toolchain: "1.81" # MSRV - uses: Swatinem/rust-cache@v2 with: cache-on-failure: true diff --git a/Cargo.toml b/Cargo.toml index e6c0de0..eefe6c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ resolver = "2" [workspace.package] version = "0.0.0" edition = "2021" -rust-version = "1.80" +rust-version = "1.81" authors = [] license = "MIT OR Apache-2.0" repository = "https://github.com/paradigmxyz/alphanet"