From 0aea5333e5d1d3dd90227161906a94682b9f06ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A8=98?= <30471441@qq.com> Date: Mon, 13 Mar 2023 16:47:55 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=8E=9F=E6=96=87?= =?UTF-8?q?=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch00-00-introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch00-00-introduction.md b/src/ch00-00-introduction.md index 3eac407..0d09204 100644 --- a/src/ch00-00-introduction.md +++ b/src/ch00-00-introduction.md @@ -2,11 +2,11 @@ > [ch00-00-introduction.md](https://github.com/rust-lang/book/blob/main/src/ch00-00-introduction.md) >
-> commit ace3550ad8c3da7aeab521f2e1f96a85b5c8f17d +> commit 4404cbcc354fad516c7ad9b5dea51b2ed876803a > 注意:此书的英文原版与 [No Starch Press][nsp] 出版的纸质版和电子版《[The Rust Programming Language][nsprust]》一致。 -[nsprust]: https://nostarch.com/rust +[nsprust]: https://nostarch.com/rust-programming-language-2nd-edition [nsp]: https://nostarch.com/ 欢迎阅读《Rust 程序设计语言》,这是一本 Rust 语言的入门书。Rust 程序设计语言能帮助你编写更快、更可靠的软件。在编程语言设计中,上层的编程效率和底层的细粒度控制往往不能兼得,而 Rust 则试图挑战这一矛盾。Rust 通过平衡技术能力和开发体验,允许你控制内存使用等底层细节,同时也不需要担心底层控制带来的各种麻烦。 From 9f617ce460a1c8c29e1d47bbe0c4a9a1bd29a3df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A8=98?= <30471441@qq.com> Date: Mon, 13 Mar 2023 16:54:20 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=8E=9F=E6=96=87?= =?UTF-8?q?=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/title-page.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/title-page.md b/src/title-page.md index 200c0a8..7e7816f 100644 --- a/src/title-page.md +++ b/src/title-page.md @@ -1,7 +1,7 @@ # Rust 程序设计语言 > [title-page.md](https://github.com/rust-lang/book/blob/main/src/title-page.md)
-> commit 2fe9eff266ecb46f108ccf6e1f63727bdad74fe0 +> commit 4404cbcc354fad516c7ad9b5dea51b2ed876803a **本书的英文原版作者为 Steve Klabnik 和 Carol Nichols,并由 Rust 社区补充完善。本简体中文译本由 Rust 中文社区翻译。** @@ -15,5 +15,5 @@ [install]: ch01-01-installation.html [editions]: appendix-05-editions.html -[nsprust]: https://nostarch.com/rust +[nsprust]: https://nostarch.com/rust-programming-language-2nd-edition [translations]: appendix-06-translation.html From a3493ddba5cc37f9d1f330c741f4c2e64569645a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A8=98?= <30471441@qq.com> Date: Mon, 13 Mar 2023 17:11:12 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=B4=E6=96=B04404cbcc354fad516c7ad9b5d?= =?UTF-8?q?ea51b2ed876803a=E4=B9=8B=E5=89=8D=E6=9C=AA=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E7=9A=84=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/title-page.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/title-page.md b/src/title-page.md index 7e7816f..ea109be 100644 --- a/src/title-page.md +++ b/src/title-page.md @@ -5,7 +5,7 @@ **本书的英文原版作者为 Steve Klabnik 和 Carol Nichols,并由 Rust 社区补充完善。本简体中文译本由 Rust 中文社区翻译。** -本书假设你使用 Rust 1.62(2022-06-30 发布)或更新的版本。请查看 [第 1 章的 “安装” 部分][install] 了解如何安装和升级 Rust。 +本书假设你使用 Rust 1.65(2022-11-03 发布)或更新的版本。请查看 [第 1 章的 “安装” 部分][install] 了解如何安装和升级 Rust。 本书的英文原版 HTML 格式可以在 [https://doc.rust-lang.org/stable/book/](https://doc.rust-lang.org/stable/book/) 在线阅读;使用 `rustup` 安装的 Rust 也包含一份英文离线版,运行 `rustup docs --book` 即可打开。 @@ -17,3 +17,5 @@ [editions]: appendix-05-editions.html [nsprust]: https://nostarch.com/rust-programming-language-2nd-edition [translations]: appendix-06-translation.html + +> **🚨 想要具有互动性的学习体验吗?试试 Rust Book 的另一个版本,其中包括测验、高亮、可视化等功能**: