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
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v6

# Installs the toolchain specified in rust-toolchain.toml
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
run: rustup toolchain install

- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -46,8 +47,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v6

# Installs the toolchain specified in rust-toolchain.toml
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
run: rustup toolchain install

- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -92,8 +94,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v6

# Installs the toolchain specified in rust-toolchain.toml
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
run: rustup toolchain install

- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The 📖 [MSG-RS Book][book] contains detailed information on how to use the lib

## MSRV

The minimum supported Rust version is 1.85 (in accordance with Edition 2024 crates).
The minimum supported Rust version is 1.88 (see [rust-toolchain.toml](./rust-toolchain.toml)).

## Contributions & Bug Reports

Expand Down
3 changes: 3 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[toolchain]
channel = "stable"
version = "1.88.0"
Loading