当前位置:首页 » 《我的小黑屋》 » 正文

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

26 人参与  2024年10月22日 13:21  分类 : 《我的小黑屋》  评论

点击全文阅读


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

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

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

配置环境变量

Mac

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

Windows

创建下面的系统环境变量

变量 RUSTUP_DIST_SERVER ,值 https://rsproxy.cn

变量 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配置国内源,解决安装依赖慢问题(备用地址)


点击全文阅读


本文链接:http://zhangshiyu.com/post/175460.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1