fix: add more resources about rust (#5584)

This commit is contained in:
LIU JIE
2021-09-30 20:58:21 +08:00
committed by GitHub
parent 49833f5d11
commit d30fca11d6
4 changed files with 22 additions and 8 deletions

View File

@ -2025,16 +2025,23 @@ That section got so big, we decided to split it into its own file, the [BY SUBJE
### Rust
* [A Gentle Introduction To Rust](https://stevedonovan.github.io/rust-gentle-intro/) - Steve J Donovan
* [Learn Rust With Entirely Too Many Linked Lists](https://rust-unofficial.github.io/too-many-lists/) - Alexis Beingessner
* [Rust by Example](https://doc.rust-lang.org/stable/rust-by-example/)
* [Rust for Rubyists](https://web.archive.org/web/20190520171322/http://www.rustforrubyists.com/book/index.html) - Steve Klabnik
* [A Gentle Introduction To Rust](https://stevedonovan.github.io/rust-gentle-intro) - Steve J Donovan
* [Asynchronous Programming in Rust](https://rust-lang.github.io/async-book)
* [Guide to Rustc Development](https://rustc-dev-guide.rust-lang.org)
* [Learn Rust With Entirely Too Many Linked Lists](https://rust-unofficial.github.io/too-many-lists) - Alexis Beingessner
* [Rust by Example](https://doc.rust-lang.org/stable/rust-by-example)
* [Rust Cookbook](https://rust-lang-nursery.github.io/rust-cookbook)
* [Rust for Rubyists](https://web.archive.org/web/20190520171322/http://www.rustforrubyists.com/book) - Steve Klabnik
* [Rust For Systems Programmers](https://github.com/nrc/r4cppp) - Nick Cameron
* [The Embedded Rust Book](https://docs.rust-embedded.org/book/intro/index.html)
* [The Little Book of Rust Macros](https://danielkeep.github.io/tlborm/book)
* [The Rust Language Reference](https://github.com/rust-lang/reference)
* [The Rust Programming Language](http://doc.rust-lang.org/book/)
* [The Rustonomicon](https://doc.rust-lang.org/nomicon/)
* [Why Rust?](https://www.oreilly.com/content/why-rust/)
* [The Rust Performance Book](https://nnethercote.github.io/perf-book)
* [The Rust Programming Language](http://doc.rust-lang.org/book)
* [The Rust RFC Book](https://rust-lang.github.io/rfcs)
* [The Rustc Book](https://doc.rust-lang.org/rustc)
* [The Rustonomicon](https://doc.rust-lang.org/nomicon)
* [Why Rust?](https://www.oreilly.com/content/why-rust)
### Sage