Skip to content

Commit

Permalink
contents(crates): prefer config.toml format (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
yin1999 authored Oct 9, 2024
1 parent 7d787e4 commit 5a3ff12
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions contents/crates.io-index.git.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Rust crates.io 索引镜像使用帮助
cname: 'crates.io-index.git'
---

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

<CodeBlock>

Expand All @@ -17,7 +17,9 @@ registry = "{{http_protocol}}{{mirror}}"

</CodeBlock>

注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`
注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`

注:cargo 仍会尝试读取不带 `.toml` 扩展名的配置文件(即 `$CARGO_HOME/config`),但从 1.39 版本起,cargo 引入了对 `.toml` 扩展名的支持,并将其设为首选格式。请根据使用的 cargo 版本选择适当的配置文件名。

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

Expand All @@ -26,7 +28,7 @@ registry = "{{http_protocol}}{{mirror}}"
```bash
mkdir -vp ${CARGO_HOME:-$HOME/.cargo}

cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config
cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config.toml
[source.crates-io]
replace-with = 'mirror'
Expand Down
8 changes: 5 additions & 3 deletions contents/crates.io-index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cname: 'crates.io-index'
disable_https_select: true
---

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

<CodeBlock>

Expand All @@ -20,7 +20,9 @@ registry = "sparse+{{http_protocol}}{{mirror}}/"

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

注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`
注:`$CARGO_HOME`:在 Windows 系统默认为:`%USERPROFILE%\.cargo`,在类 Unix 系统默认为:`$HOME/.cargo`

注:cargo 仍会尝试读取不带 `.toml` 扩展名的配置文件(即 `$CARGO_HOME/config`),但从 1.39 版本起,cargo 引入了对 `.toml` 扩展名的支持,并将其设为首选格式。请根据使用的 cargo 版本选择适当的配置文件名。

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

Expand All @@ -29,7 +31,7 @@ registry = "sparse+{{http_protocol}}{{mirror}}/"
```bash
mkdir -vp ${CARGO_HOME:-$HOME/.cargo}

cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config
cat << EOF | tee -a ${CARGO_HOME:-$HOME/.cargo}/config.toml
[source.crates-io]
replace-with = 'mirror'
Expand Down

0 comments on commit 5a3ff12

Please sign in to comment.