现象
cargo build 时下载失败(Mac 10.13.4),提示:
error: failed to download from https://crates-io.proxy.ustclug.org/api/v1/crates/actix-codec/0.3.0/download
Caused by:
[56] Failure when receiving data from the peer (Received HTTP code 500 from proxy after CONNECT)
或者提示:
error: failed to download from https://crates-io.proxy.ustclug.org/api/v1/crates/actix-codec/0.3.0/download
Caused by:
[60] Peer certificate cannot be authenticated with given CA certificates (SSL certificate problem: certificate has expired)
或者
Caused by:
failed to load source for dependency actix-cors
Caused by:
Unable to update registry crates-io
Caused by:
failed to update replaced source registry crates-io
Caused by:
failed to fetch https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index
Caused by:
network failure seems to have happened
if a proxy or similar is necessary net.git-fetch-with-cli
may help here
https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
Caused by:
[56] Failure when receiving data from the peer (Received HTTP code 500 from proxy after CONNECT); class=Net (12)
解决办法
vi ~/.cargo/config文章来源:https://www.toymoban.com/news/detail-403134.html
# 放到 `$HOME/.cargo/config` 文件中
[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
# 替换成你偏好的镜像源
replace-with = 'sjtu'
#replace-with = 'ustc'
# 清华大学
[source.tuna]
registry = "https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index.git"
# 中国科学技术大学
[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"
# 上海交通大学
[source.sjtu]
registry = "https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index"
# rustcc社区
[source.rustcc]
registry = "git://crates.rustcc.cn/crates.io-index"
[net]
git-fetch-with-cli=true
变为上海交通大学的源,最重要的是 最后net的参数,设置为从git拉取。git不会被墙。文章来源地址https://www.toymoban.com/news/detail-403134.html
到了这里,关于【Rust】cargo update或者cargo build国内被墙失败解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!