add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,8 +1,8 @@
# cargo run
> 运行当前的 Cargo 包。
> 注意: 执行的二进制文件的工作目录将设置为当前工作目录。
> 更多信息:<https://doc.rust-lang.org/cargo/commands/cargo-run.html>.
> 注意执行的二进制文件的工作目录将设置为当前工作目录。
> 更多信息:<https://doc.rust-lang.org/cargo/commands/cargo-run.html>
- 运行默认的二进制目标:
@@ -10,24 +10,24 @@
- 运行指定的二进制文件:
`cargo run --bin {{名称}}`
`cargo run --bin {{name}}`
- 运行指定的示例:
`cargo run --example {{示例名}}`
`cargo run --example {{name}}`
- 激活一系列以空格或逗号分隔的功能:
- 激活以空格或逗号分隔的功能列表
`cargo run --features {{功能1 功能2 ...}}`
`cargo run --features {{feature1 feature2 ...}}`
- 禁用默认功能:
`cargo run --no-default-features`
- 激活所有可用功能:
- 激活所有可用功能:
`cargo run --all-features`
- 使用定的配置文件运行:
- 使用定的配置文件运行:
`cargo run --profile {{配置文件名称}}`
`cargo run --profile {{name}}`