apiv1

参考 rxproxy

config

$HOME/.cargo/config.toml

[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

[registry]
default = "rsproxy"

env

bash

export RUSTUP_DIST_SERVER="https://rsproxy.cn"
export RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"

powershell

$env:RUSTUP_DIST_SERVER="https://rsproxy.cn"
$env:RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"

install

rustup

# 官方安装
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# 镜像安装
curl --proto '=https' --tlsv1.2 -sSf https://rsproxy.cn/rustup-init.sh | sh

Windows 安装: 文档 rustup-init.exe

rust

rustup install stable

# 升级
rustup update