You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The -Z save-analysis feature was removed in rust-lang/rust#101841 which completely breaks this program's method of inspecting crates. nightly-2023-02-15 (1.69.0) I think is the last nightly to support this code.
The mentioned recommended alternatives involve using rust-analyzer, which is sub-optimal because the entire point of this tool is to show you how rustc sees things, and r-a is a separate implementation and is imperfect in its analysis.
Maybe I could make a compiler driver similar to how rustdoc works, but it'll be a lot of work and probably very fragile :(
The text was updated successfully, but these errors were encountered:
The
-Z save-analysis
feature was removed in rust-lang/rust#101841 which completely breaks this program's method of inspecting crates. nightly-2023-02-15 (1.69.0) I think is the last nightly to support this code.The mentioned recommended alternatives involve using rust-analyzer, which is sub-optimal because the entire point of this tool is to show you how rustc sees things, and r-a is a separate implementation and is imperfect in its analysis.
Maybe I could make a compiler driver similar to how rustdoc works, but it'll be a lot of work and probably very fragile :(
The text was updated successfully, but these errors were encountered: