1 背景介绍
开发substrate-node-template时候,利用cargo update
进行依赖更新。出现拉包速度慢,甚至会超时:
2 解决方案
2.1 更换源
$ vim ~/.cargo/config
输入以下内容:
[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
replace-with = 'ustc'
[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"
2.2 删除缓存
这一步一定要做,否则更改源可能无效:
$ rm ~/.cargo/.package-cache
2.3 重新执行cargo update
速度起飞。