diff --git a/.devcontainer/Dockerfile.dev b/.devcontainer/Dockerfile.dev index 73b37ebc9..dbecbc305 100644 --- a/.devcontainer/Dockerfile.dev +++ b/.devcontainer/Dockerfile.dev @@ -6,7 +6,7 @@ ARG USER_GID=$USER_UID ARG PYTHON_VERSION=3.14 ARG NODE_MAJOR=20 ARG VYPER_VERSION=0.4.3 -ARG RUST_VERSION=1.95.0 +ARG RUST_VERSION=1.96.0 ENV DEBIAN_FRONTEND=noninteractive ENV CARGO_TERM_COLOR=always \ diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index c04ffc8d8..4d9f69108 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Rust toolchain uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6eff9879c..2345821db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: persist-credentials: false - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 - uses: mozilla-actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9 - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2 @@ -119,7 +119,7 @@ jobs: persist-credentials: false - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 - uses: mozilla-actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9 - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2 @@ -138,7 +138,7 @@ jobs: persist-credentials: false - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 - uses: taiki-e/install-action@65851e10cd6c377f11a60e600abc07cb08643468 # v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb89d9464..f63e0bc17 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -189,7 +189,7 @@ jobs: persist-credentials: false - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 targets: ${{ matrix.target }} - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 diff --git a/.github/workflows/test-flaky.yml b/.github/workflows/test-flaky.yml index a6330eda3..05628a9ac 100644 --- a/.github/workflows/test-flaky.yml +++ b/.github/workflows/test-flaky.yml @@ -31,7 +31,7 @@ jobs: persist-credentials: false - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 - uses: taiki-e/install-action@65851e10cd6c377f11a60e600abc07cb08643468 # v2 with: diff --git a/.github/workflows/test-isolate.yml b/.github/workflows/test-isolate.yml index 698898e22..7bfcb972f 100644 --- a/.github/workflows/test-isolate.yml +++ b/.github/workflows/test-isolate.yml @@ -35,7 +35,7 @@ jobs: persist-credentials: false - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 - uses: taiki-e/install-action@65851e10cd6c377f11a60e600abc07cb08643468 # v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 36994e847..c74a1e2e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,7 +63,7 @@ jobs: persist-credentials: false - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master with: - toolchain: 1.95.0 + toolchain: 1.96.0 components: clippy,rustfmt target: ${{ matrix.target }} - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 diff --git a/Cargo.toml b/Cargo.toml index 6c9b235ef..26d8d45ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ resolver = "2" [workspace.package] version = "1.6.0" edition = "2024" -rust-version = "1.95.0" +rust-version = "1.96.0" authors = ["Foundry Contributors"] license = "MIT OR Apache-2.0" homepage = "https://getfoundry.sh" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 38ab2c6bd..01a3bee03 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.95.0" +channel = "1.96.0" components = ["clippy", "rustfmt"]