Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/user-guide/src/concepts/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ These components have been deprecated and are not published in new Rust releases
* `rls` --- [RLS] is a language server that is deprecated and has been replaced
by rust-analyzer.
* `rust-analysis` --- Metadata about the standard library, used by [RLS].
* The `wasm32-wasi` target --- It has been
[renamed](https://blog.rust-lang.org/2024/04/09/updates-to-rusts-wasi-targets.html)
to `wasm32-wasip1`.

## Component availability

Expand Down
2 changes: 1 addition & 1 deletion src/toolchain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ impl<'a> Toolchain<'a> {
.cfg
.process
.var_os("RUSTUP_WINDOWS_PATH_ADD_BIN")
.map_or(false, |s| s == "1")
.is_some_and(|s| s == "1")
{
path_entries.push(self.path.join("bin"));
}
Expand Down