Unable to update registry `crates-io`
カテゴリー: General
2022-10-02
Unable to update registry `crates-io`
PROJECT/.cargo/config
または
~/.cargo/config
https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
net.git-fetch-with-cli
Type: boolean
Default: false
Environment: CARGO_NET_GIT_FETCH_WITH_CLI
true: 必要なライブラリを git でフェッチしてダウンロードします。
false: システムのビルドインライブラリを利用します。
欠点
true: 作業フォルダにダウンロードされるため肥大します
執筆:2022.10.02
編集:2022.10.02
編集:2022.10.02
>cargo check
Updating crates.io index
warning: spurious network error (2 tries remaining): failed to receive response: セキュリティ エラーが発生しました
; class=Os (2)
warning: spurious network error (1 tries remaining): failed to receive response: セキュリティ エラーが発生しました
; class=Os (2)
error: failed to get `~` as a dependency of package `~`
Caused by:
failed to load source for dependency `~`
Caused by:
Unable to update registry `crates-io`
Caused by:
failed to fetch `https://github.com/rust-lang/crates.io-index`
Caused by:
failed to receive response: セキュリティ エラーが発生しました
; class=Os (2)
Updating crates.io index
warning: spurious network error (2 tries remaining): failed to receive response: セキュリティ エラーが発生しました
; class=Os (2)
warning: spurious network error (1 tries remaining): failed to receive response: セキュリティ エラーが発生しました
; class=Os (2)
error: failed to get `~` as a dependency of package `~`
Caused by:
failed to load source for dependency `~`
Caused by:
Unable to update registry `crates-io`
Caused by:
failed to fetch `https://github.com/rust-lang/crates.io-index`
Caused by:
failed to receive response: セキュリティ エラーが発生しました
; class=Os (2)
PROJECT/.cargo/config
または
~/.cargo/config
[net]を追加する
git-fetch-with-cli = true
https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
net.git-fetch-with-cli
Type: boolean
Default: false
Environment: CARGO_NET_GIT_FETCH_WITH_CLI
true: 必要なライブラリを git でフェッチしてダウンロードします。
false: システムのビルドインライブラリを利用します。
欠点
true: 作業フォルダにダウンロードされるため肥大します