2023-01-31 10:04:30 +08:00
|
|
|
|
# Rust 程序设计语言(2021 edition)简体中文版
|
2017-03-04 12:10:32 +08:00
|
|
|
|
|
2021-07-07 11:36:38 +08:00
|
|
|
|
![Build Status](https://github.com/KaiserY/trpl-zh-cn/workflows/CI/badge.svg)
|
2018-01-11 23:12:20 +08:00
|
|
|
|
|
2018-03-05 09:59:52 +08:00
|
|
|
|
## 状态
|
|
|
|
|
|
2024-10-20 23:44:05 +08:00
|
|
|
|
- 新增 ch17 async & await 施工中
|
2018-03-05 09:59:52 +08:00
|
|
|
|
|
2018-12-06 21:49:12 +08:00
|
|
|
|
PS:
|
|
|
|
|
|
2021-06-02 21:07:42 +08:00
|
|
|
|
* 对照源码位置:[https://github.com/rust-lang/book/tree/main/src][source]
|
2018-12-06 21:49:12 +08:00
|
|
|
|
* 每章翻译开头都带有官方链接和 commit hash,若发现与官方不一致,欢迎 Issue 或 PR :)
|
2018-03-05 09:59:52 +08:00
|
|
|
|
|
2021-06-02 21:07:42 +08:00
|
|
|
|
[source]: https://github.com/rust-lang/book/tree/main/src
|
2019-05-16 12:18:38 +08:00
|
|
|
|
|
2024-08-15 10:39:39 +08:00
|
|
|
|
## 校对
|
|
|
|
|
|
|
|
|
|
部分翻译采用 ChatGPT 4o 进行翻译校对。提示词详见 [proofreading_prompt.md](proofreading_prompt.md)
|
|
|
|
|
|
2018-07-19 10:22:27 +08:00
|
|
|
|
## 静态页面构建与文档撰写
|
|
|
|
|
|
|
|
|
|
### 构建
|
|
|
|
|
|
2023-10-25 18:17:26 +08:00
|
|
|
|
你可以将本 mdbook 构建成一系列静态 html 页面。这里我们采用 [mdbook](https://rust-lang.github.io/mdBook/index.html) 打包出静态网页。在这之前,你需要安装 [Rust](https://www.rust-lang.org/zh-CN/)。
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
2023-10-25 18:17:26 +08:00
|
|
|
|
全局安装 mdbook
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
|
|
|
|
``` bash
|
2023-10-25 18:17:26 +08:00
|
|
|
|
cargo install mdbook
|
2018-07-19 10:22:27 +08:00
|
|
|
|
```
|
|
|
|
|
|
2023-10-25 18:17:26 +08:00
|
|
|
|
cd 到项目目录,然后开始构建。构建好的静态文档会出现在 "./book/html" 中
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
|
|
|
|
```bash
|
2023-10-25 18:17:26 +08:00
|
|
|
|
mdbook build
|
2018-07-19 10:22:27 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 文档撰写
|
|
|
|
|
|
2023-10-25 18:17:26 +08:00
|
|
|
|
可以通过任意的 http 服务器来预览构建的文档。举个例子:
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
|
|
|
|
```bash
|
2023-10-25 18:17:26 +08:00
|
|
|
|
cargo install simple-http-server
|
|
|
|
|
simple-http-server .\book\html\ -i
|
2018-07-19 10:22:27 +08:00
|
|
|
|
```
|
|
|
|
|
|
2018-03-05 09:59:52 +08:00
|
|
|
|
## 社区资源
|
|
|
|
|
|
2023-01-17 11:38:33 +08:00
|
|
|
|
- Rust 语言中文社区:<https://rust.cc/>
|
2019-11-11 00:46:06 +08:00
|
|
|
|
- Rust 中文 Wiki:<https://wiki.rust-china.org/>
|
2023-01-17 11:38:33 +08:00
|
|
|
|
- Rust 编程语言社区 1 群,群号:303838735(已满,只能内部邀请)
|
|
|
|
|
- Rust 编程语言社区 2 群,群号:813448660
|
|
|
|
|
- Rust 水群 (编程社区子群),电报群:[t.me/rust_deep_water](//t.me/rust_deep_water)
|
2018-03-05 09:59:52 +08:00
|
|
|
|
|
2022-02-20 13:24:34 +08:00
|
|
|
|
## PDF
|
|
|
|
|
|
|
|
|
|
[Rust 程序设计语言 简体中文版.pdf](https://kaisery.github.io/trpl-zh-cn/Rust%20%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E8%AF%AD%E8%A8%80%20%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87%E7%89%88.pdf)
|
|
|
|
|
|
2024-01-08 23:33:11 +08:00
|
|
|
|
- 由 [mdbook-typst-pdf](https://github.com/KaiserY/mdbook-typst-pdf) 生成,有任何问题欢迎 issue 或 PR
|
2022-02-20 13:24:34 +08:00
|
|
|
|
|
2018-03-05 09:59:52 +08:00
|
|
|
|
## GitBook
|
|
|
|
|
|
|
|
|
|
本翻译主要采用 [mdBook](https://github.com/rust-lang-nursery/mdBook) 格式。同时支持 [GitBook](https://github.com/GitbookIO/gitbook),但会缺失部分功能,如一些代码没有语法高亮。
|
|
|
|
|
|
2019-11-11 00:46:06 +08:00
|
|
|
|
本翻译加速查看站点有:
|
|
|
|
|
- 深圳站点:<http://120.78.128.153/rustbook>
|
2018-07-19 12:16:46 +08:00
|
|
|
|
|
2021-08-08 19:37:30 +08:00
|
|
|
|
[GitBook.com](https://www.gitbook.com/) 地址:<https://kaisery.github.io/trpl-zh-cn/>
|