Rustup 是官方提供的安装工具,不仅可以下载 Rustc 编译工具,还可以下载各种 Rust 的工具链。
export RUSTUP_DIST_SERVER="https://rsproxy.cn"
比如在 Linux 下执行:
curl https://sh.rustup.rs -sSf | sh
即可。
[source.crates-io]
replace-with = 'rsproxy'
[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"
[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"
[net]
git-fetch-with-cli = true
安装nightly版本: rustup install nightly && rustup default nightly
安装src : rustup component add rust-src
安装racer: cargo install racer
参考:
https://www.jianshu.com/p/5efdd9ce8565
https://www.cnblogs.com/onsunsl/p/rust-cargo-proxy-and-crates-io-china-mirro.html
Rust Develop(Learn) Environment
字节跳动源https://rsproxy.cn/