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
egui currently uses Rust 1.81 for everything (specified in rust-toolchain), but the latest version of rust-analyzer no longer supports it.
One solution would be to just bump the Rust version to 1.82, which might result in some MSRV increases sneaking in. We could also specify RUSTUP_TOOLCHAIN=stable for rust-analyzer specifically (via rust-analyzer.cargo.extraEnv), but if anything goes wrong with either toolchain, it might be hard to debug considering there would be a "secret extra toolchain" only set in the VS Code config.
The text was updated successfully, but these errors were encountered:
Specifying the rust-analyzer component in the toolchain file should also make vscode pick up the server from that instead (i dont think we have that documented yet)
egui currently uses Rust 1.81 for everything (specified in
rust-toolchain
), but the latest version of rust-analyzer no longer supports it.One solution would be to just bump the Rust version to 1.82, which might result in some MSRV increases sneaking in. We could also specify
RUSTUP_TOOLCHAIN=stable
for rust-analyzer specifically (viarust-analyzer.cargo.extraEnv
), but if anything goes wrong with either toolchain, it might be hard to debug considering there would be a "secret extra toolchain" only set in the VS Code config.The text was updated successfully, but these errors were encountered: