Skip to content

Commit

Permalink
Merge pull request #1685 from dtolnay/rustup
Browse files Browse the repository at this point in the history
Raise required compiler to rust 1.61
  • Loading branch information
dtolnay authored Jun 21, 2024
2 parents 25f6299 + bbb63d6 commit 33659c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [stable, beta, 1.63.0, 1.60.0]
rust: [stable, beta, 1.63.0, 1.61.0]
include:
- rust: nightly
components: rustc-dev
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- run: cargo check ${{env.target}} --no-default-features --features 'full fold visit visit-mut parsing printing'
- if: matrix.components == 'rustc-dev'
run: cargo check --benches --all-features --release
- if: matrix.rust != '1.60.0'
- if: matrix.rust != '1.61.0'
run: cargo check ${{env.target}} --manifest-path json/Cargo.toml --no-default-features

examples:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include = [
keywords = ["macros", "syn"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/syn"
rust-version = "1.60"
rust-version = "1.61"

[features]
default = ["derive", "parsing", "printing", "clone-impls", "proc-macro"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contains some APIs that may be useful more generally.
[`syn::DeriveInput`]: https://docs.rs/syn/2.0/syn/struct.DeriveInput.html
[parser functions]: https://docs.rs/syn/2.0/syn/parse/index.html

*Version requirement: Syn supports rustc 1.60 and up.*
*Version requirement: Syn supports rustc 1.61 and up.*

[*Release notes*](https://github.com/dtolnay/syn/releases)

Expand Down

0 comments on commit 33659c8

Please sign in to comment.