diff --git a/README.md b/README.md index 45482ff4..7e8ad63a 100644 --- a/README.md +++ b/README.md @@ -31,18 +31,20 @@ - **规避陷阱和对抗编译器**,只有真的上手写过一长段时间 Rust 项目,才知道该如何规避常见的陷阱以及解决一些难搞的编译器错误,而本书将帮助你大大缩短这个过程,提前规避这些问题 -- **Cook Book**,涵盖多个应用场景的实战代码片段,程序员上网查询文件操作、正则解析、数据库操作是常事,没有人能记住所有代码,而 Cook Book 可解君忧,Ctrl + C/V 走天下 +- **[Cookbook](https://cook.rs)**,涵盖多个应用场景的实战代码片段,程序员上网查询文件操作、正则解析、数据库操作是常事,没有人能记住所有代码,而 Cook Book 可解君忧,Ctrl + C/V 走天下 -- **配套练习题**,像学习一门大学课程一样学习 Rust 是一种什么感觉?*Rust语言圣经 + [Rust语言实战](https://github.com/sunface/rust-by-practice)* 双剑合璧,给你最极致的学习体验 +- **[配套练习题](https://github.com/sunface/rust-by-practice)**,像学习一门大学课程一样学习 Rust 是一种什么感觉?*Rust语言圣经 + Rust语言实战* 双剑合璧,给你最极致的学习体验 总之在写作过程中我们始终铭记初心:为中国用户打造一门**全面的、深入的、持续更新的** Rust 教程。 新手用来入门,老手用来提高,高手用来提升生产力。 -## 配套学习资源 +## Rustt 翻译计划 + +想要获取更多关于 Rust 的高质量技术文章、学习资料和新闻资讯嘛?请订阅 [Rustt 翻译计划](https://rustt.org)。 + +## Rust语言周刊 + +每周一发布,精选过去一周的技术文章、业界新闻、开源项目和 Rust 语言动态。与 Rustt 翻译计划不同,周刊不区分中英文,只是把最新产生的内容分门别类的呈现给广大读者。 -- [Rust语言实战](https://github.com/sunface/rust-by-practice),它是本书的配套练习册,提供了大量有挑战性的示例、练习和实践项目,帮助大家解决 Rust 语言从学习到实战的问题 — 毕竟这之间还隔着好几个 Go 语言的难度 :D -- [Rust语言周刊](https://github.com/sunface/rust-weekly),每周一发布,精选过去一周的技术文章、业界新闻、开源项目和 Rust 语言动态 -- [Rust酷库推荐](https://github.com/sunface/fancy-rust),优秀项目很多,如何在茫茫码海中与它们相遇?相比 Awesome Rust,它能带给你全新的体验和选择 -- [Rustt 翻译组](https://rustt.org),目前最专业的 Rust 翻译组织,这里有 Rust 技术文章、学习教程和新闻资讯的高质量中文翻译 ## 🏅 贡献者 diff --git a/book.toml b/book.toml index 5e439c80..00c73b29 100644 --- a/book.toml +++ b/book.toml @@ -5,7 +5,7 @@ title = "Rust语言圣经(Rust Course)" src = "src" [output.html] -additional-css = ["theme/style2.css"] +additional-css = ["theme/style3.css"] additional-js = ["assets/custom.js", "assets/bigPicture.js"] git-repository-url = "https://github.com/sunface/rust-course" edit-url-template = "https://github.com/sunface/rust-course/edit/main/{path}" @@ -13,11 +13,11 @@ edit-url-template = "https://github.com/sunface/rust-course/edit/main/{path}" [output.html.playground] editable = true copy-js = true -line-numbers = true +# line-numbers = true [output.html.fold] enable = true -level = 2 +level = 1 [rust] edition = "2021" #在线运行用2021版本的 diff --git a/src/SUMMARY.md b/src/SUMMARY.md index f145a29f..5cc4abae 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -2,9 +2,12 @@ [Rust语言圣经](about-book.md) [进入 Rust 编程世界](into-rust.md) -[AWS 为何这么喜欢 Rust?](usecases/aws-rust.md) [快速查询入口](index-list.md) +--- +[Cook Rust: Awesome + Cookbook](cookbook.md) +[Rust 语言周刊](rust-weekly.md) +[Rustt 翻译计划](rustt.md) # 快速开始 --- @@ -162,9 +165,11 @@ - [构建脚本 build.rs](cargo/reference/build-script/intro.md) - [构建脚本示例](cargo/reference/build-script/examples.md) - -# 高级专题 +# 应用实战 --- +- [企业落地实践](usecases/intro.md) + - [AWS 为何这么喜欢 Rust?](usecases/aws-rust.md) + - [Rust 最佳实践](practice/intro.md) - [对抗编译检查](practice/fight-with-compiler/intro.md) - [生命周期](practice/fight-with-compiler/lifetime/intro.md) @@ -231,6 +236,9 @@ - [栈上的链表](too-many-lists/advanced-lists/stack-allocated.md) +# 高级专题 +--- + - [Rust 性能优化 todo](profiling/intro.md) - [深入内存 todo](profiling/memory/intro.md) - [指针和引用 todo](profiling/memory/pointer-ref.md) @@ -263,16 +271,9 @@ - [HashMap todo](std/hashmap.md) - [Iterator 常用方法 todo](std/iterator.md) -- [CookBook doing](cookbook/intro.md) - - [实用算法](cookbook/algos/intro.md) - - [生成随机值](cookbook/algos/randomness.md) - - [Vec 排序](cookbook/algos/sorting.md) - - [命令行]() - - [参数解析](cookbook/cmd/parsing.md) - - [终端输出格式化](cookbook/cmd/ansi.md) - - [压缩](cookbook/compression/intro.md) - - [使用.tar包](cookbook/compression/tar.md) - - [配置文件解析 todo](cookbook/config.md) + + +