Rust crates源国内加速镜像配置说明
Posted nnsword
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rust crates源国内加速镜像配置说明相关的知识,希望对你有一定的参考价值。
国内拉取 crates.io 仓库代码比较慢,很多次超时导致引用库没法编译,大家可通过以下配置,把源切换到国内镜像源。
创建配置文件
配置文件目录
//windows
C:\\Users\\操作系统当前用户名\\.cargo\\
//linux or mac
/Users/操作系统当前用户名/.cargo/
创建配置文件
进入.cargo的目录后,查看是否存在config的配置文件,不存在就创建。
配置
使用文本编辑器打开config配置文件,编写以下内容
[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
#replace-with = 'tuna'
replace-with = 'ustc'
#replace-with = "rustcc"
[source.tuna]
#清华提供
registry = "https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index.git"
[source.sjtu]
# 上海交通大学
registry = "https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index"
[source.ustc]
# 中国科技大提供
registry = "https://mirrors.ustc.edu.cn/crates.io-index"
#registry = "git://mirrors.ustc.edu.cn/crates.io-index"
[source.rustcc]
# rust中文社区提供
registry = "https://code.aliyun.com/rustcc/crates.io-index.git"
#registry = "git://crates.rustcc.cn/crates.io-index"
[net]
git-fetch-with-cli = true
以上是关于Rust crates源国内加速镜像配置说明的主要内容,如果未能解决你的问题,请参考以下文章
【RUST_BASIC】Rust for Linux环境搭建