Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Attempt to change default to stable now RLS is there. #373

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion doc/common_configuration_parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Users should adjust properties of this configuration parameter to customize rust
This configuration parameter specifies which toolchain the extension will invoke rustup with.
It is used for getting sysroot, installing components, invoking Cargo

However there are few exceptions. Currently RLS is available for nightly hence RLS and rust-analysis are installed for the nightly toolchain.
However there are few exceptions. RLS is available in stable, beta and nightly. At time of writing nightly is sometimes missing RLS.

### nightlyToolchain

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -471,15 +471,15 @@
"description": "rustup configuration",
"properties": {
"toolchain": {
"default": null,
"default": "stable",
"description": "The toolchain to use for installing components (rust-src), except RLS",
"type": [
"string",
"null"
]
},
"nightlyToolchain": {
"default": null,
"default": "stable",
"description": "The nightly toolchain to use for installing RLS and related components and running RLS",
"type": [
"string",
Expand Down