Rust 参考资料
整理一个 Rust 书单,供平时参考使用。
官方
快速上手
- The Book - 上手书籍。
- Rust by Example - Rust 代码示例。
核心必读
- The Rust Reference - Rust 指南,比 The Book 更全面,包含 Rust 语法的方方面面。
- The Rustonomicon - Rust 死灵书,介绍了 Rust 中的各种黑科技。
- Asynchronous Programming in Rust - Rust 异步编程。
- The Cargo Book - Cargo 是 Rust 提供的包管理工具,该文档是 Cargo 的使用指南。
- The Standard Library - Rust 标准库文档。
- Rust API Guidelines - Rust API 规范。
按需阅读
- The Edition Guide - Rust 各版本介绍。
- The Unstable Book - Rust 新特性。
- The rustc Book - Rust 编译器指南。
- The rustdoc Book - Rust 文档生成工具。
- The rustup Book - rustup 是 Rust 的安装工具。
- Error Codes Index - Rust 错误码清单。
- Command Line Book - 命令行应用。
- WebAssembly Book - WASM 应用。
- Embedded Book - 嵌入式系统。
非官方
- Rust Books - Rust 书单合集,列举了很多 Rust 文档资料,很全。
- The Little Book of Rust Macros - Rust 宏编程教学。
- 深入 Rust 标准库 - 国人编写的中文书籍。