File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,14 +101,14 @@ jobs:
101
101
- run : cargo test --test test_size --no-default-features --features span-locations
102
102
103
103
msrv :
104
- name : Rust 1.56 .0
104
+ name : Rust 1.60 .0
105
105
needs : pre_ci
106
106
if : needs.pre_ci.outputs.continue
107
107
runs-on : ubuntu-latest
108
108
timeout-minutes : 45
109
109
steps :
110
110
- uses : actions/checkout@v5
111
- - uses : dtolnay/rust-toolchain@1.56 .0
111
+ - uses : dtolnay/rust-toolchain@1.60 .0
112
112
with :
113
113
components : rust-src
114
114
- run : cargo check
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ edition = "2021"
10
10
keywords = [" macros" , " syn" ]
11
11
license = " MIT OR Apache-2.0"
12
12
repository = " https://github.com/dtolnay/proc-macro2"
13
- rust-version = " 1.56 "
13
+ rust-version = " 1.60 "
14
14
15
15
[package .metadata .docs .rs ]
16
16
rustc-args = [" --cfg=procmacro2_semver_exempt" ]
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ proc-macro2 by default.
62
62
63
63
To opt into the additional APIs available in the most recent nightly compiler,
64
64
the ` procmacro2_semver_exempt ` config flag must be passed to rustc. We will
65
- polyfill those nightly-only APIs back to Rust 1.56 .0. As these are unstable APIs
65
+ polyfill those nightly-only APIs back to Rust 1.60 .0. As these are unstable APIs
66
66
that track the nightly compiler, minor versions of proc-macro2 may make breaking
67
67
changes to them at any time.
68
68
Original file line number Diff line number Diff line change 63
63
//!
64
64
//! To opt into the additional APIs available in the most recent nightly
65
65
//! compiler, the `procmacro2_semver_exempt` config flag must be passed to
66
- //! rustc. We will polyfill those nightly-only APIs back to Rust 1.56 .0. As
66
+ //! rustc. We will polyfill those nightly-only APIs back to Rust 1.60 .0. As
67
67
//! these are unstable APIs that track the nightly compiler, minor versions of
68
68
//! proc-macro2 may make breaking changes to them at any time.
69
69
//!
You can’t perform that action at this time.
0 commit comments