内容有所增添,主要内容转载自:https://zhuanlan.zhihu.com/p/273653469,袁承兴

Rust学习资源(持续更新)

袁承兴

出版书籍

官方t-docs四本书:

【入门教程】the rust programming language 【语言指南】the rust reference 【示例教程】rust by examples 【互动教程】rustlings rust早期贡献者官方书: 【提高教程】rustnomicon

The Rust Reference:https://doc.rust-lang.org/reference/introduction.html Rust Language Cheat Sheet:https://cheats.rs/ The Rust Programming Language(TRPL):https://doc.rust-lang.org/book/title-page.html The Cargo Book:https://doc.rust-lang.org/cargo/ Asnycronous Pgogramming in Rust《Rust异步编程》:https://doc.rust-lang.org/cargo/ Rust by Example:https://doc.rust-lang.org/rust-by-example/index.html Rust宏小册(小宏书):http://blog.luxko.site/tlborm-chinese/book/README.html The Dark Arts of Unsafe Rust《Rust死灵书》:https://doc.rust-lang.org/nomicon/index.html The Rust Standard Library:https://doc.rust-lang.org/std/

在线文档

官方

武器库

练习

需要知道的第三方库

  • Tokio,async programming engine
  • Serde,Serialization/Deserialization library
  • Regex,regular expressions
  • [Bitflags](https://zhuanlan.zhihu.com/p/273653469/ https://github.com/bitflags/bitflags) ,Structs that are just a series of bits
  • Rand,random number generation
  • winapi ,bindings for windows APIs

视频

社区