0


Rust配置国内源,解决安装依赖慢问题

温馨提示:最新内容仅在原文更新。

国内源使用字节的RsProxy https://rsproxy.cn/

  • 解决rust-analyzer加载时间过长(请参考本文)

配置环境变量

Mac

exportRUSTUP_DIST_SERVER="https://rsproxy.cn"exportRUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"

Windows

创建下面的系统环境变量

  1. 变量 RUSTUP_DIST_SERVER ,值 https://rsproxy.cn
  2. 变量 RUSTUP_UPDATE_ROOT ,值 https://rsproxy.cn/rustup

添加配置

新建配置文件

若对应的位置不存在

config

或者

config.toml

文件,手动新建即可。

  • Mac位置 ~/.cargo/config
  • Win位置 C:\Users\你的PC名\.cargo\config

配置文件内容如下【二选一】

[source.crates-io]
replace-with = 'rsproxy-sparse'
[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"
[source.rsproxy-sparse]
registry = "sparse+https://rsproxy.cn/index/"
[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"
[net]
git-fetch-with-cli = true
[source.crates-io]
replace-with = 'rsproxy'
[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"
[source.rsproxy-sparse]
registry = "sparse+https://rsproxy.cn/index/"
[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"
[net]
git-fetch-with-cli = true

原文链接

Rust配置国内源,解决安装依赖慢问题

Rust配置国内源,解决安装依赖慢问题(备用地址)


本文转载自: https://blog.csdn.net/github_38967228/article/details/140768397
版权归原作者 开源分享汇 所有, 如有侵权,请联系我们删除。

“Rust配置国内源,解决安装依赖慢问题”的评论:

还没有评论