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]
bash
cargo rls-install -n # --nightly
Three operations are executed by the above command.
Before executing each operation, ask whether to execute it.
bash
cargo rls-install -ny # --nightly --yes
All operations are done without approval until the end.
bash
cargo rls-install -s # --stable
Install Stable Rust and RLS and change the default toolchain.
bash
cargo rls-install -b # --beta
Install Beta Rust and RLS and change the default toolchain.
bash
cargo rls-install -ysbn
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 -v # --view
Check the build status of Rust and RLS. This command is intended to be used only by itself.
bash
cargo rls-install -f # --rustfmt
cargo rls-install -c rustfmt # --comp-add rustfmt
Install component(example: rustfmt). Use rustup component add
command.
```bash
cargo rls-install -ds
cargo rls-install -db
cargo rls-install -dnightly
cargo rls-install -dn
cargo rls-install -dnightly-2019-05-21 ```
Change default toolchain. Use rustup default
command.
```bash USAGE: cargo-rls-install.exe rls-install [FLAGS] [OPTIONS]
FLAGS: -b, --beta Install beta channel Rust and RLS -h, --help Prints help information -n, --nightly Install nightly channel Rust and RLS -f, --rustfmt Install rustfmt -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, --comp-add