Cargo字节镜像源

在 Windows 系统默认为:%USERPROFILE%.cargo,在类 Unix 系统默认为:$HOME/.cargo,在此目录下新建config文件,填写内容如下:

php 复制代码
[source.crates-io]
replace-with = 'rsproxy'

[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"

# 稀疏索引,要求 cargo >= 1.68
[source.rsproxy-sparse]
registry = "sparse+https://rsproxy.cn/index/"

[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"

[net]
git-fetch-with-cli = true

源替换:

[source.crates-io]:这一部分指定了 crates.io 作为默认源。

replace-with = 'rsproxy':这行配置表示将 crates.io 源替换为 rsproxy。
自定义源配置:

[source.rsproxy]:定义了一个名为 rsproxy 的源。

registry = "https://rsproxy.cn/crates.io-index":指定了 rsproxy 源的注册表 URL。
稀疏索引配置(需要 Cargo 1.68 及以上版本):

[source.rsproxy-sparse]:定义了一个名为 rsproxy-sparse 的源,用于稀疏索引。

registry = "sparse+https://rsproxy.cn/index/":指定了稀疏索引源的注册表 URL。
注册表配置:

[registries.rsproxy]:定义了一个名为 rsproxy 的注册表。

index = "https://rsproxy.cn/crates.io-index":指定了注册表的索引 URL。
网络配置:

[net]:定义了网络相关的配置。

git-fetch-with-cli = true:这行配置指定了在处理 git 依赖时使用命令行工具。

丰富内容

相关推荐
uccs14 小时前
使用 rust 创建多线程 http-server
后端·rust
pumpkin845142 天前
Rust 的核心工具链
rust
SomeB1oody2 天前
【Rust自学】13.8. 迭代器 Pt.4:创建自定义迭代器
开发语言·后端·rust
半夏知半秋2 天前
rust学习-函数的定义与使用
服务器·开发语言·后端·学习·rust
SomeB1oody3 天前
【Rust自学】13.6. 迭代器 Pt.2:消耗和产生迭代器的方法
开发语言·后端·rust
Hello.Reader3 天前
Rust 数据类型详解
开发语言·后端·rust
gs801403 天前
2025年编程语言热度分析:Python领跑,Go与Rust崛起
python·golang·rust
老猿讲编程3 天前
详解Rust 中 String 和 str 的用途与区别
开发语言·后端·rust
rongjv4 天前
[rustGUI][iced]基于rust的GUI库iced(0.13)的部件学习(05):svg图片转为png格式(暨svg部件的使用)
rust·gui·iced
SomeB1oody4 天前
【Rust自学】13.5. 迭代器 Pt.1:迭代器的定义、iterator trait和next方法
开发语言·后端·rust