Raise required compiler to rust 1.61

This commit is contained in:
David Tolnay 2024-10-31 16:42:50 -07:00
parent bb30f2e9b4
commit 0e2bef9ff1
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
4 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
rust: [nightly, beta, stable, 1.56.0] rust: [nightly, beta, stable, 1.61.0]
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View file

@ -9,7 +9,7 @@ edition = "2021"
keywords = ["error", "error-handling", "derive"] keywords = ["error", "error-handling", "derive"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/thiserror" repository = "https://github.com/dtolnay/thiserror"
rust-version = "1.56" rust-version = "1.61"
[dependencies] [dependencies]
thiserror-impl = { version = "=1.0.65", path = "impl" } thiserror-impl = { version = "=1.0.65", path = "impl" }

View file

@ -16,7 +16,7 @@ This library provides a convenient derive macro for the standard library's
thiserror = "1.0" thiserror = "1.0"
``` ```
*Compiler support: requires rustc 1.56+* *Compiler support: requires rustc 1.61+*
<br> <br>

View file

@ -6,7 +6,7 @@ description = "Implementation detail of the `thiserror` crate"
edition = "2021" edition = "2021"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/thiserror" repository = "https://github.com/dtolnay/thiserror"
rust-version = "1.56" rust-version = "1.61"
[lib] [lib]
proc-macro = true proc-macro = true