Skip to content

Commit

Permalink
rust: bump rust to 1.81 (paradigmxyz#10721)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger authored Sep 5, 2024
1 parent 60bc403 commit fdad74e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,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
Expand Down Expand Up @@ -132,7 +132,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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace.package]
version = "1.0.6"
edition = "2021"
rust-version = "1.80"
rust-version = "1.81"
license = "MIT OR Apache-2.0"
homepage = "https://paradigmxyz.github.io/reth"
repository = "https://github.com/paradigmxyz/reth"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ When updating this, also update:
- .github/workflows/lint.yml
-->

The Minimum Supported Rust Version (MSRV) of this project is [1.80.0](https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html).
The Minimum Supported Rust Version (MSRV) of this project is [1.81.0](https://blog.rust-lang.org/2024/09/05/Rust-1.81.0.html).

See the book for detailed instructions on how to [build from source](https://paradigmxyz.github.io/reth/installation/source.html).

Expand Down
6 changes: 3 additions & 3 deletions book/installation/source.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can build Reth on Linux, macOS, Windows, and Windows WSL2.
## Dependencies

First, **install Rust** using [rustup](https://rustup.rs/)
First, **install Rust** using [rustup](https://rustup.rs/)

```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Expand All @@ -32,7 +32,7 @@ operating system:

These are needed to build bindings for Reth's database.

The Minimum Supported Rust Version (MSRV) of this project is 1.80.0. If you already have a version of Rust installed,
The Minimum Supported Rust Version (MSRV) of this project is 1.81.0. If you already have a version of Rust installed,
you can check your version by running `rustc --version`. To update your version of Rust, run `rustup update`.

## Build Reth
Expand Down Expand Up @@ -147,7 +147,7 @@ _(Thanks to Sigma Prime for this section from [their Lighthouse book](https://li

### Bus error (WSL2)

In WSL 2 on Windows, the default virtual disk size is set to 1TB.
In WSL 2 on Windows, the default virtual disk size is set to 1TB.

You must increase the allocated disk size for your WSL2 instance before syncing reth.

Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
msrv = "1.80"
msrv = "1.81"
too-large-for-stack = 128

0 comments on commit fdad74e

Please sign in to comment.