unstable proc_macro tracked::* rename/restructure#149400
Merged
bors merged 4 commits intorust-lang:mainfrom Dec 10, 2025
Merged
unstable proc_macro tracked::* rename/restructure#149400bors merged 4 commits intorust-lang:mainfrom
bors merged 4 commits intorust-lang:mainfrom
Conversation
Collaborator
|
rustbot has assigned @petrochenkov. Use |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Contributor
Author
|
I am having a bit of a problem running the complete test-suite locally. For some reason 15 debuginfo-lldb tests are failing with errors in python code. Log
Does someone have an idea how to fix this? |
Member
I have the same issue and just use |
Member
|
@bors r+ |
Collaborator
bors
added a commit
that referenced
this pull request
Dec 9, 2025
Rollup of 5 pull requests Successful merges: - #144938 (Enable `outline-atomics` by default on more AArch64 platforms) - #146579 (Handle macro invocation in attribute during parse) - #149400 (unstable proc_macro tracked::* rename/restructure) - #149664 (attempt to fix unreachable code regression ) - #149806 (Mirror `ubuntu:24.04` on ghcr) Failed merges: - #149789 (Cleanup in the attribute parsers) r? `@ghost` `@rustbot` modify labels: rollup
bors
added a commit
that referenced
this pull request
Dec 9, 2025
Rollup of 5 pull requests Successful merges: - #144938 (Enable `outline-atomics` by default on more AArch64 platforms) - #146579 (Handle macro invocation in attribute during parse) - #149400 (unstable proc_macro tracked::* rename/restructure) - #149664 (attempt to fix unreachable code regression ) - #149806 (Mirror `ubuntu:24.04` on ghcr) Failed merges: - #149789 (Cleanup in the attribute parsers) r? `@ghost` `@rustbot` modify labels: rollup
rust-timer
added a commit
that referenced
this pull request
Dec 10, 2025
Rollup merge of #149400 - Skgland:tracked_mod, r=Amanieu unstable proc_macro tracked::* rename/restructure Picking up what should be the uncontroversial part of #87173 (closed due to inactivity over two years ago). Part of #99515. - move `proc_macro::tracked_env::var` to `proc_macro::tracked::env_var` - move `proc_macro::tracked_path::path` to `proc_macro::tracked::path` - change the argument of `proc_macro::tracked::path` from `AsRef<str>` to `AsRef<Path>`.
github-actions bot
pushed a commit
to rust-lang/compiler-builtins
that referenced
this pull request
Dec 11, 2025
Rollup of 5 pull requests Successful merges: - rust-lang/rust#144938 (Enable `outline-atomics` by default on more AArch64 platforms) - rust-lang/rust#146579 (Handle macro invocation in attribute during parse) - rust-lang/rust#149400 (unstable proc_macro tracked::* rename/restructure) - rust-lang/rust#149664 (attempt to fix unreachable code regression ) - rust-lang/rust#149806 (Mirror `ubuntu:24.04` on ghcr) Failed merges: - rust-lang/rust#149789 (Cleanup in the attribute parsers) r? `@ghost` `@rustbot` modify labels: rollup
weihanglo
added a commit
to weihanglo/cargo
that referenced
this pull request
Dec 11, 2025
Changed accordingly to rust-lang/rust#149400
github-merge-queue bot
pushed a commit
to rust-lang/cargo
that referenced
this pull request
Dec 11, 2025
Changed accordingly to rust-lang/rust#149400 This also fix a clippy warning from `clippy::assertions_on_constants`.
ranger-ross
pushed a commit
to ranger-ross/cargo
that referenced
this pull request
Dec 12, 2025
Changed accordingly to rust-lang/rust#149400
tristandruyen
added a commit
to vault81/axum-folder-router
that referenced
this pull request
Dec 23, 2025
- tracked_path was renamed Ref: rust-lang/rust#149400
tristandruyen
added a commit
to vault81/axum-folder-router
that referenced
this pull request
Dec 23, 2025
Resolves: #8 - tracked_path was renamed Ref: rust-lang/rust#149400
tgross35
pushed a commit
to rust-lang/compiler-builtins
that referenced
this pull request
Jan 31, 2026
Rollup of 5 pull requests Successful merges: - rust-lang/rust#144938 (Enable `outline-atomics` by default on more AArch64 platforms) - rust-lang/rust#146579 (Handle macro invocation in attribute during parse) - rust-lang/rust#149400 (unstable proc_macro tracked::* rename/restructure) - rust-lang/rust#149664 (attempt to fix unreachable code regression ) - rust-lang/rust#149806 (Mirror `ubuntu:24.04` on ghcr) Failed merges: - rust-lang/rust#149789 (Cleanup in the attribute parsers) r? `@ghost` `@rustbot` modify labels: rollup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Picking up what should be the uncontroversial part of #87173 (closed due to inactivity over two years ago).
Part of #99515.
proc_macro::tracked_env::vartoproc_macro::tracked::env_varproc_macro::tracked_path::pathtoproc_macro::tracked::pathproc_macro::tracked::pathfromAsRef<str>toAsRef<Path>.