Skip to content

Commit fa555f6

Browse files
authored
fix(deps): update rust crate proc-macro2 to 1.0.101 (#87)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [proc-macro2](https://redirect.github.com/dtolnay/proc-macro2) | workspace.dependencies | patch | `1.0.95` -> `1.0.101` | --- ### Release Notes <details> <summary>dtolnay/proc-macro2 (proc-macro2)</summary> ### [`v1.0.101`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.101) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.100...1.0.101) - Optimize Span location accessors ([#&#8203;519](https://redirect.github.com/dtolnay/proc-macro2/issues/519)) ### [`v1.0.100`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.100) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.99...1.0.100) - Stabilize `Span` methods on Rust 1.88+: `start`, `end`, `line`, `column`, `file`, `local_file` ([#&#8203;517](https://redirect.github.com/dtolnay/proc-macro2/issues/517), [#&#8203;518](https://redirect.github.com/dtolnay/proc-macro2/issues/518)) ### [`v1.0.99`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.99) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.98...1.0.99) - Prevent Span's unstable API becoming unavailable from a future new compiler lint ([#&#8203;515](https://redirect.github.com/dtolnay/proc-macro2/issues/515)) ### [`v1.0.98`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.98) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.97...1.0.98) - Disallow prefixed identifier as name of lifetime: `'prefix#lifetime` ([#&#8203;514](https://redirect.github.com/dtolnay/proc-macro2/issues/514), [https://github.com/rust-lang/rust/pull/126452](https://redirect.github.com/rust-lang/rust/pull/126452)) ### [`v1.0.97`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.97) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.96...1.0.97) - Allow build-script cleanup failure with NFSv3 output directory to be non-fatal ([#&#8203;505](https://redirect.github.com/dtolnay/proc-macro2/issues/505), [#&#8203;512](https://redirect.github.com/dtolnay/proc-macro2/issues/512), thanks [@&#8203;davvid](https://redirect.github.com/davvid)) ### [`v1.0.96`](https://redirect.github.com/dtolnay/proc-macro2/releases/tag/1.0.96) [Compare Source](https://redirect.github.com/dtolnay/proc-macro2/compare/1.0.95...1.0.96) - Simplify how rustdoc flags are decided during docs.rs builds ([#&#8203;511](https://redirect.github.com/dtolnay/proc-macro2/issues/511)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 05:59 AM, on day 24 of the month ( * 0-5 24 * * ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/jerus-org/captval). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44MS4yIiwidXBkYXRlZEluVmVyIjoiNDEuODEuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2 parents c8a8034 + 9de56cd commit fa555f6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3838
- deps: update dependency toolkit to v2.12.1(pr [#84])
3939
- deps: update rust crate tokio to 1.46.1(pr [#85])
4040
- deps: update rust crate mockd to 0.4.51(pr [#86])
41+
- deps: update rust crate proc-macro2 to 1.0.101(pr [#87])
4142

4243
## [0.1.2] - 2025-05-15
4344

@@ -198,6 +199,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
198199
[#84]: https://github.com/jerus-org/captval/pull/84
199200
[#85]: https://github.com/jerus-org/captval/pull/85
200201
[#86]: https://github.com/jerus-org/captval/pull/86
202+
[#87]: https://github.com/jerus-org/captval/pull/87
201203
[Unreleased]: https://github.com/jerus-org/captval/compare/v0.1.2...HEAD
202204
[0.1.2]: https://github.com/jerus-org/captval/compare/v0.1.0...v0.1.2
203205
[0.1.0]: https://github.com/jerus-org/captval/releases/tag/v0.1.0

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ publish = false
1111
env_logger = "0.11.8"
1212
hex = "0.4.3"
1313
itertools = "0.14.0"
14-
proc-macro2 = "1.0.95"
14+
proc-macro2 = "1.0.101"
1515
proc-macro-error2 = "2.0.1"
1616
quote = "1.0.40"
1717
reqwest = { version = "0.12.22", default-features = false, features = [

0 commit comments

Comments
 (0)