if a proxy or similar is necessary net.git-fetch-with-cli
在cargo下创建config
vi ~/.cargo/config
1
添加代理
[http]
proxy = "127.0.0.1:7891"
[https]
proxy = "127.0.0.1:7891"
或者修改下载仓库
[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"
亲测, 修改下载仓库 通过。
Couldn‘t resolve host name (Could not resolve host: crates)
错误的解决办法在编译Rust源程序时,可能会出现如下 Couldn’t resolve host name (Could not resolve host: crates) 错误(见 https://github.com/ustclug/discussions/issues/294)。
一个临时的解决方法是在运行 cargo 的时候加入环境变量 CARGO_HTTP_MULTIPLEXING=false。作用是取消并行下载。具体原因可参考用了镜像之后构建rustc报错。
亲测通过!