add guide for checking out the rust-toolchain file

This commit is contained in:
zonyitoo
2021-06-04 13:52:05 +08:00
parent 2819c47158
commit bf2f93c43a
2 changed files with 8 additions and 2 deletions

View File

@@ -56,7 +56,13 @@ This project uses system (libc) memory allocator (Rust's default). But it also a
Install from [crates.io](https://crates.io/crates/shadowsocks-rust):
```bash
rustup default nightly-2021-05-21
# Set default toolchain to nightly
rustup default nightly
# RECOMMEND: Check the rust-toolchain file in the project root and use the recomended nightly version
# For example:
# rustup default nightly-2021-06-03
# Install from crates.io
cargo install shadowsocks-rust
```

View File

@@ -1 +1 @@
nightly-2021-05-21
nightly-2021-06-03