From 354d11853c92520f78d1a6d72113b1b1ee187399 Mon Sep 17 00:00:00 2001 From: dancoombs Date: Fri, 18 Oct 2024 10:42:12 -0500 Subject: [PATCH] chore: update to rust 1.82 --- .github/workflows/ci.yaml | 2 +- .github/workflows/docker-release.yaml | 2 +- .github/workflows/unit.yaml | 2 +- Cargo.toml | 2 +- Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6350b1323..97f0bebea 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: uses: dtolnay/rust-toolchain@stable with: components: clippy - toolchain: 1.81.0 + toolchain: 1.82.0 - name: Install toolchain (nightly) run: rustup toolchain add nightly --component rustfmt --profile minimal - uses: Swatinem/rust-cache@v2 diff --git a/.github/workflows/docker-release.yaml b/.github/workflows/docker-release.yaml index 89debe543..fe4f9c1c5 100644 --- a/.github/workflows/docker-release.yaml +++ b/.github/workflows/docker-release.yaml @@ -31,7 +31,7 @@ jobs: uses: dtolnay/rust-toolchain@stable with: components: clippy - toolchain: 1.79.0 + toolchain: 1.82.0 - name: Install toolchain (nightly) run: rustup toolchain add nightly --component rustfmt --profile minimal diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index 518ce700c..225940d12 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -21,7 +21,7 @@ jobs: submodules: recursive - name: Install toolchain - uses: dtolnay/rust-toolchain@1.81.0 + uses: dtolnay/rust-toolchain@1.82.0 with: components: llvm-tools-preview diff --git a/Cargo.toml b/Cargo.toml index 07a3fa2c8..c5a2e1bae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ resolver = "2" [workspace.package] version = "0.3.0" edition = "2021" -rust-version = "1.81" +rust-version = "1.82" license = "LGPL-3.0-only" repository = "https://github.com/alchemyplatform/rundler" diff --git a/Dockerfile b/Dockerfile index fe53c6df8..8d36f9bd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Adapted from https://github.com/paradigmxyz/reth/blob/main/Dockerfile # syntax=docker/dockerfile:1.4 -FROM --platform=$TARGETPLATFORM rust:1.81.0 AS chef-builder +FROM --platform=$TARGETPLATFORM rust:1.82.0 AS chef-builder # Install system dependencies RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list