Skip to content

Commit f4ee98b

Browse files
authored
Merge pull request #3473 from reubenmiller/dev-replace-rls-with-rust-analyzer
dev: replace deprecated rust language server (rls) with rust-analyzer
2 parents c2093ec + 28f9702 commit f4ee98b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
9292
&& rm -f /usr/local/bin/systemctl \
9393
#
9494
# Install rust tools
95-
&& rustup component add rls rust-analysis rust-src rustfmt clippy \
95+
&& rustup component add rust-analyzer rust-analysis rust-src rustfmt clippy \
9696
&& rustup toolchain install nightly \
9797
&& rustup component add rustfmt --toolchain nightly \
9898
# Use cargo-bininstall to improve multi-arch builds

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ prepare-dev:
5050

5151
# Install necessary tools
5252
install-tools:
53-
rustup component add rls rust-analysis rust-src rustfmt clippy
53+
rustup component add rust-analyzer rust-analysis rust-src rustfmt clippy
5454
rustup toolchain install nightly
5555
rustup component add rustfmt --toolchain nightly
5656
cargo +stable install taplo-cli cargo-nextest

0 commit comments

Comments
 (0)