Skip to content

Rust

官方网站

安装

下载对应系统的 RustUp

对于 Windows 系统,需安装 Microsoft C++ 生成工具

更新

执行

shell
rustup update

配置

配置 RustUp 镜像站

环境变量 RUSTUP_DIST_SERVER (用于更新 toolchain):

shell
export RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static

环境变量 RUSTUP_UPDATE_ROOT (用于更新 rustup):

shell
export RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup

配置 Cargo 代理

修改 ~/.cargo/config.toml 文件:

toml
[http]
proxy = "127.0.0.1:7890"

[https]
proxy = "127.0.0.1:7890"

使用镜像仓库

配置 $CARGO_HOME/config.toml:

toml
[source.crates-io]
replace-with = 'ustc'

[source.ustc]
registry = "sparse+https://mirrors.ustc.edu.cn/crates.io-index/"