Skip to content

Commit 5a2bb9f

Browse files
[lang-rust] don't install deprecated components (#1538)
* [lang-rust] don't install deprecated components The `rust-analysis` and `rls` components are no longer installable. I've replaced them with `rust-analyzer` as the new LSP See https://rust-lang.github.io/rustup/concepts/components.html#previous-components Tool: gitpod/catfood.gitpod.cloud * FIx args Tool: gitpod/catfood.gitpod.cloud
1 parent 0ad88ab commit 5a2bb9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chunks/lang-rust/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ENV RUST_VERSION=${RUST_VERSION}
1212
ENV PATH=$HOME/.cargo/bin:$PATH
1313

1414
RUN curl -fsSL https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain ${RUST_VERSION} \
15-
-c rls rust-analysis rust-src rustfmt clippy \
15+
-c rust-analyzer -c rust-src -c rustfmt -c clippy \
1616
&& for cmp in rustup cargo; do rustup completions bash "$cmp" > "$HOME/.local/share/bash-completion/completions/$cmp"; done \
1717
&& cargo install cargo-watch cargo-edit cargo-workspaces \
1818
&& rm -rf "$HOME/.cargo/registry" # This registry cache is now useless as we change the CARGO_HOME path to `/workspace`

0 commit comments

Comments
 (0)