国内有些地区访问Rustup的服务器及registry(@github)不太顺畅,这里介绍配置中科大的Rust镜像。
在 $HOME/.cargo/config 中添加如下内容
[registry]
index = "git://mirrors.ustc.edu.cn/crates.io-index"
如果所处的环境中不允许使用 git 协议, 可以把上述地址改为
index = "http://mirrors.ustc.edu.cn/crates.io-index"
同步频率为每两个小时更新一次.
如果 cargo 版本为 0.13.0 或以上, 需要更改 $HOME/.cargo/config 为以下内容:
[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
replace-with = 'ustc'
[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"
Linux 环境,在$HOME/.bashrc或$HOME/.bash_profile中添加如下内容:
# User specific environment and startup program
export CARGO_HOME=$HOME/.cargo
export RUSTUP_HOME=$HOME/.rustup
export RUSTUP_DIST_SERVER=http://mirrors.ustc.edu.cn/rust-static
export RUSTUP_UPDATE_ROOT=http://mirrors.ustc.edu.cn/rust-static/rustup
export PATH="$HOME/.cargo/bin:$PATH"