-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
unstable proc_macro tracked::* rename/restructure #149400
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
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.
|
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? |
I have the same issue and just use |
|
@bors r+ |
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
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
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>`.
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
Changed accordingly to rust-lang/rust#149400
Changed accordingly to rust-lang/rust#149400 This also fix a clippy warning from `clippy::assertions_on_constants`.
Changed accordingly to rust-lang/rust#149400
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>.