Skip to content

Commit 0e2bef9

Browse files
committed
Raise required compiler to rust 1.61
1 parent bb30f2e commit 0e2bef9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
rust: [nightly, beta, stable, 1.56.0]
27+
rust: [nightly, beta, stable, 1.61.0]
2828
timeout-minutes: 45
2929
steps:
3030
- uses: actions/checkout@v4

Cargo.toml

+1-1
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.56"
12+
rust-version = "1.61"
1313

1414
[dependencies]
1515
thiserror-impl = { version = "=1.0.65", path = "impl" }

README.md

+1-1
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 = "1.0"
1717
```
1818

19-
*Compiler support: requires rustc 1.56+*
19+
*Compiler support: requires rustc 1.61+*
2020

2121
<br>
2222

impl/Cargo.toml

+1-1
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.56"
9+
rust-version = "1.61"
1010

1111
[lib]
1212
proc-macro = true

0 commit comments

Comments
 (0)