Every night, I look for a day when I can use RLS which may be broken.
In order to realize it, this program goes to see the page that mexus's scripts
updates everyday, and scrapes it.
If we had no mexus page in the first place, we would have never made Cargo subcommand,
nor did I feel like using Rust.
bash
cargo install cargo-rls-install
For Linux, it is necessary to install OpenSSL for installation.
```bash
sudo apt install libssl-dev
sudo apt install libssl-dev sudo apt install build-essential sudo apt install pkg-config
sudo yum install openssl-devel
sudo dnf install openssl ```
bash
cargo rls-install [FLAGS] [OPTIONS]
Three operations are executed by the above command.
Before executing each operation, ask whether to execute it.
bash
cargo rls-install -n # --nightly
All operations are done without approval until the end.
bash
cargo rls-install -ny # --nightly --yes
Install Stable Rust, RLS and change the default toolchain.
bash
cargo rls-install -s # --stable
Install Beta Rust, RLS and change the default toolchain.
bash
cargo rls-install -b # --beta
Install RLS on all Rust channels.
The default toolchain is Nightly Rust, as the last operation on Nightly Rust is done.
bash
cargo rls-install -ysbn
Check the build status of Rust and RLS.
This command is intended for use alone.
bash
cargo rls-install -v # --view
Installs the specified component. Use rustup component add
command.
```bash
cargo rls-install -c rustfmt # --component-add rustfmt ```
Note: Changes the selected Rust channel to the default toolchain. Use rustup default
command.
If you specify cargo rls-instrall -d n
, Nightly Rust with the most recent date will be specified as the default toolchain.
```bash
cargo rls-install -d s
cargo rls-install -d b
cargo rls-install -d beta-2019-05-19
cargo rls-install -d nightly
cargo rls-install -d n
cargo rls-install -d nightly-2019-05-21 ```
Uninstall the selected Rust channel. Use rustup uninstall
command.
Note: Latest nightly rust and default toolchain isn't eligible for uninstallation.
```bash
cargo rls-install -u s
cargo rls-install -u b
cargo rls-install -u beta-2019-05-19
cargo rls-install -u n
cargo rls-install -u nightly-2019-5-21
cargo rls-install -u a # a or all ```
Nightly Rust will be installed on the date you choose.
bash
cargo rls-install -i nightly-2020-03-19
Show installed toolchains. Use rustup show
command.
bash
cargo rls-install show
Install formatter tools: clippy and rustfmt. Use rustup component add
command.
bash
cargo rls-install formatter
```bash USAGE: cargo rls-install [FLAGS] [OPTIONS]
FLAGS: -b, --beta Install beta channel Rust and RLS -h, --help Prints help information -i, --install Install user specified target nightly channel -n, --nightly Install nightly channel Rust and RLS -s, --stable Install stable channel Rust and RLS -V, --version Prints version information -v, --view RLS build status view -y, --yes Pre-approval: Install Rust, RLS and change toolchain
OPTIONS:
-c, --component-add
SUBCOMMANDS: formatter Install clippy and rustfmt help Prints this message or the help of the given subcommand(s) show Wrapper(rustup show) ```