Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
rust:
- "stable"
- "nightly"
- "1.88" # MSRV
- "1.91" # MSRV
flags:
# No features
- "--no-default-features -F reqwest-rustls-tls"
Expand All @@ -38,7 +38,7 @@ jobs:
- "--all-features"
exclude:
# All features on MSRV
- rust: "1.88" # MSRV
- rust: "1.91" # MSRV
flags: "--all-features"
steps:
- uses: actions/checkout@v6
Expand All @@ -59,16 +59,16 @@ jobs:
cache-on-failure: true
# Only run tests on latest stable and above
- name: Install cargo-nextest
if: ${{ matrix.rust != '1.88' }} # MSRV
if: ${{ matrix.rust != '1.91' }} # MSRV
uses: taiki-e/install-action@1e67dedb5e3c590e1c9d9272ace46ef689da250d # v2
with:
tool: nextest
- name: build
if: ${{ matrix.rust == '1.88' }} # MSRV
if: ${{ matrix.rust == '1.91' }} # MSRV
run: cargo build --workspace ${{ matrix.flags }}
- name: test
shell: bash
if: ${{ matrix.rust != '1.88' }} # MSRV
if: ${{ matrix.rust != '1.91' }} # MSRV
run: cargo nextest run --workspace ${{ matrix.flags }}

doctest:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "2"
[workspace.package]
version = "1.6.3"
edition = "2021"
rust-version = "1.88"
rust-version = "1.91"
authors = ["Alloy Contributors"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/alloy-rs/alloy"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ When updating this, also update:
- .github/workflows/ci.yml
-->

The current MSRV (minimum supported rust version) is 1.88.
The current MSRV (minimum supported rust version) is 1.91.

Alloy will keep a rolling MSRV policy of **at least** two versions behind the
latest stable release (so if the latest stable release is 1.58, we would
Expand Down