Skip to content

Commit d51354a

Browse files
authored
Merge pull request #2560 from kinnison/backout-ra-proxy
chore: Temporarily back out rust-analyzer proxy
2 parents 7af951a + 1851e8d commit d51354a

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

ci/snapcraft.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fi
4343
# as rustup.$PROXY. If we have an alias which is not a supported proxy name
4444
# then rustup might get sad.
4545

46-
PROXIES="cargo cargo-clippy cargo-fmt cargo-miri clippy-driver rls rustc rustdoc rustfmt rust-analyzer"
46+
PROXIES="cargo cargo-clippy cargo-fmt cargo-miri clippy-driver rls rustc rustdoc rustfmt"
4747

4848
# From now on, things should be automagic
4949

doc/src/concepts/components.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ toolchains. The following is an overview of the different components:
4242
doc --help` for more options.
4343
* `rls` — [RLS] is a language server that provides support for editors and
4444
IDEs.
45-
* `rust-analyzer-preview` — [Rust anaylzer] is a new language server intended
46-
to eventually replace [RLS]. This is a preview release as it is still in the
47-
experimental phase.
4845
* `clippy` — [Clippy] is a lint tool that provides extra checks for common
4946
mistakes and stylistic choices.
5047
* `miri` — [Miri] is an experimental Rust interpreter, which can be used for
@@ -85,5 +82,4 @@ details.
8582
[rustfmt]: https://github.com/rust-lang/rustfmt
8683
[rustup components history]: https://rust-lang.github.io/rustup-components-history/
8784
[profiles]: profiles.md
88-
[rust anaylzer]: https://rust-analyzer.github.io/
8985
[nightly availability]: channels.md#nightly-availability

doc/src/concepts/profiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ available at this time are `minimal`, `default`, and `complete`:
1616
`rustup`. This should never be used, as it includes *every* component ever
1717
included in the metadata and thus will almost always fail. If you are
1818
looking for a way to install devtools such as `miri` or IDE integration
19-
tools (`rls`, `rust-analyzer`), you should use the `default` profile and
19+
tools (`rls`), you should use the `default` profile and
2020
install the needed additional components manually, either by using `rustup
2121
component add` or by using `-c` when installing the toolchain.
2222

doc/src/concepts/proxies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The list of proxies is currently static in `rustup` and is as follows:
1616

1717
- `rust-lldb` and `rust-gdb` are simple wrappers around the `lldb` and `gdb` debuggers respectively. The wrappers enable some pretty-printing of Rust values and add some convenience features to the debuggers by means of their scripting interfaces.
1818

19-
- `rls` and `rust-analyzer` are two different generations of IDE integration tooling. They implement the language-server protocol to permit IDEs and editors such as Visual Studio Code, ViM, or Emacs, access to the semantics of the Rust code you are editing. They come from their respectively named components.
19+
- `rls` is part of the Rust IDE integration tooling. It implements the language-server protocol to permit IDEs and editors such as Visual Studio Code, ViM, or Emacs, access to the semantics of the Rust code you are editing. It comes from the `rls` component.
2020

2121
- `cargo-clippy` and `clippy-driver` are related to the `clippy` linting tool which provides extra checks for common mistakes and stylistic choices and it comes from the `clippy` component.
2222

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ pub static TOOLS: &[&str] = &[
2121
"rust-lldb",
2222
"rust-gdb",
2323
"rls",
24-
"rust-analyzer",
2524
"cargo-clippy",
2625
"clippy-driver",
2726
"cargo-miri",

0 commit comments

Comments
 (0)