Skip to content

Commit d8c8fb7

Browse files
committed
crates.io-index*: port changes
mirrorz-org/mirrorz-help@5a3ff12
1 parent 6870a61 commit d8c8fb7

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

crates.io-index.git/usage.zh.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 使用方法
22

3-
编辑 `$CARGO_HOME/config` 文件,添加以下内容:
3+
编辑 `$CARGO_HOME/config.toml` 文件,添加以下内容:
44

55
<tmpl z-lang="toml">
66
[source.crates-io]
@@ -10,14 +10,16 @@ replace-with = 'mirror'
1010
registry = "{{endpoint}}"
1111
</tmpl>
1212

13-
注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`
13+
注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`
14+
15+
注:cargo 仍会尝试读取不带 `.toml` 扩展名的配置文件(即 `$CARGO_HOME/config`),但从 1.39 版本起,cargo 引入了对 `.toml` 扩展名的支持,并将其设为首选格式。请根据使用的 cargo 版本选择适当的配置文件名。
1416

1517
在 Linux 环境可以使用下面的命令完成:
1618

1719
<tmpl z-lang="bash">
1820
mkdir -vp ${CARGO_HOME:-$HOME/.cargo}
1921

20-
cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config
22+
cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config.toml
2123
[source.crates-io]
2224
replace-with = 'mirror'
2325

crates.io-index/usage.zh.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 使用方法
22

3-
编辑 `$CARGO_HOME/config` 文件,添加以下内容:
3+
编辑 `$CARGO_HOME/config.toml` 文件,添加以下内容:
44

55
<tmpl z-lang="toml">
66
[source.crates-io]
@@ -12,14 +12,16 @@ registry = "sparse+{{endpoint}}/"
1212

1313
注:`sparse+` 表示在使用稀疏索引,链接末尾的 `/` 不能缺少。
1414

15-
注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`
15+
注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`
16+
17+
注:cargo 仍会尝试读取不带 `.toml` 扩展名的配置文件(即 `$CARGO_HOME/config`),但从 1.39 版本起,cargo 引入了对 `.toml` 扩展名的支持,并将其设为首选格式。请根据使用的 cargo 版本选择适当的配置文件名。
1618

1719
在 Linux 环境可以使用下面的命令完成:
1820

1921
<tmpl z-lang="bash">
2022
mkdir -vp ${CARGO_HOME:-$HOME/.cargo}
2123

22-
cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config
24+
cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config.toml
2325
[source.crates-io]
2426
replace-with = 'mirror'
2527

0 commit comments

Comments
 (0)