Skip to content

Commit 91b181f

Browse files
committed
Raise required compiler to Rust 1.68
1 parent 7ba0ec3 commit 91b181f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ jobs:
5050
continue-on-error: true
5151

5252
msrv:
53-
name: Rust 1.65.0
53+
name: Rust 1.68.0
5454
needs: pre_ci
5555
if: needs.pre_ci.outputs.continue
5656
runs-on: ubuntu-latest
5757
timeout-minutes: 45
5858
steps:
5959
- uses: actions/checkout@v5
60-
- uses: dtolnay/rust-toolchain@1.65.0
60+
- uses: dtolnay/rust-toolchain@1.68.0
6161
with:
6262
components: rust-src
6363
- run: cargo check

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
keywords = ["error", "error-handling", "derive"]
1010
license = "MIT OR Apache-2.0"
1111
repository = "https://github.com/dtolnay/thiserror"
12-
rust-version = "1.65"
12+
rust-version = "1.68"
1313

1414
[features]
1515
default = ["std"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This library provides a convenient derive macro for the standard library's
1616
thiserror = "2"
1717
```
1818

19-
*Compiler support: requires rustc 1.65+*
19+
*Compiler support: requires rustc 1.68+*
2020

2121
<br>
2222

impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "Implementation detail of the `thiserror` crate"
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/dtolnay/thiserror"
9-
rust-version = "1.65"
9+
rust-version = "1.68"
1010

1111
[lib]
1212
proc-macro = true

0 commit comments

Comments
 (0)