Skip to content

Commit 6d4d4e5

Browse files
authored
Update README.md
1 parent 46cdbf0 commit 6d4d4e5

File tree

1 file changed

+54
-2
lines changed

1 file changed

+54
-2
lines changed

README.md

Lines changed: 54 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,54 @@
1-
# rust-learning-resources
2-
A list of my recommended resources for learning Rust, in addition with a learning path.
1+
# Rust Learning Resources
2+
A list of my recommended resources for learning Rust, in addition with a learning path. Note that this is not a listing of all available learning resources for Rust across a variety of different fields and topics. As stated, it is what I recommend to use whilst learning Rust.
3+
4+
# Table of Contents
5+
6+
- [Learning Path](#learning-path)
7+
- [Additional Resources](#additional-resources)
8+
9+
# Learning Path
10+
11+
1. [The Rust Programming Language Book](https://doc.rust-lang.org/stable/book/)
12+
- **NOTES:**
13+
- This book assumes you have some prior programming knowledge and experience
14+
- Reading this book is not a recommendation. It is a requirement in my opinion. It is an extremely informative introduction to the language and will help you start off smoothly.
15+
- Follow along with the code and write the projects that are part of the book.
16+
2. [Rustlings](https://github.com/rust-lang/rustlings)
17+
- **NOTES:**
18+
- Rustlings is a good way to get yourself dirty writing some Rust code. It is a collection of exercises to help you get acclimated and used to the semantics of the language.
19+
- Totally optional, but it will help.
20+
3. [Rust By Example](https://doc.rust-lang.org/rust-by-example/)
21+
- **NOTES:**
22+
- This book provides you with Rust code examples along with explanations about what is going on in the code. It is a nice guided experience to learning Rust, similar to the projects presented in the Rust Programming Language book.
23+
- Totally optional, but it will help.
24+
4. [The Rust Reference](https://doc.rust-lang.org/reference/introduction.html)
25+
- **NOTES:**
26+
- This book will give you a good overview about a variety of language constructs in Rust, some of the intricacies of the language, and some other things you might see out in the wild.
27+
- Recommended
28+
5. Start writing some Rust code. Figure out a project that aligns with your interests and start writing it in Rust. Some easy programs to make as a Rust beginner are programs that take user input, CLI applications, and basic web APIs. You should have enough knowledge by this point to write said projects.
29+
6. [async/.await Book](https://rust-lang.github.io/async-book/01_getting_started/01_chapter.html)
30+
- **NOTES:**
31+
- By this point, you will have likely encountered or heard about `async` and `.await` and other concurrency related topics in Rust. This is a good point to start learning about how asynchronous programming works in Rust.
32+
- Highly recommended
33+
7. [Crust of Rust series by Jon Gjengset](https://youtube.com/playlist?list=PLqbS7AVVErFiWDOAVrPt7aYmnuuOLYvOa)
34+
- **NOTES:**
35+
- This series is an excellent overview into the more "intermediate" parts of Rust, You will learn about many of the deeper parts and/or more niche parts of Rust like interior mutability (introduced in the Rust book), subtyping and variance, atomics, etc. By the end of the series, you will know much more about Rust and how things work.
36+
- Highly recommended
37+
8. [Rust for Rustacenas by Jon Gjengset](https://www.amazon.com/Rust-Rustaceans-Programming-Experienced-Developers-ebook/dp/B0957SWKBS)
38+
- **NOTES:**
39+
- This book is an incredible compliment to the Crust of Rust series. It introduces some other topics that have not yet been covered in the Crust of Rust series.
40+
- Highly recommended
41+
9. [The Rustonomicon](https://doc.rust-lang.org/stable/nomicon/)
42+
- **NOTES:**
43+
- By this point, you will have decent experience with Rust. But, you might be wondering about `unsafe` Rust and the deeper, darker parts of the language. This book will tell you all about those topics. It also explains why `unsafe` Rust exists and how it is supposed to interact with safe and other unsafe Rust code.
44+
- Some topics in this book were covered in Crust of Rust.
45+
- Reading this book is not a recommendation. It is a requirement in my opinion.
46+
47+
# Additional Resources
48+
49+
These resources can act as references for when you need assistances with other sections of the Rust language and ecosystem.
50+
51+
1. [The Cargo Book](https://doc.rust-lang.org/cargo/)
52+
2. [The Rustup Book](https://rust-lang.github.io/rustup/)
53+
3. [The Rustc Book](https://doc.rust-lang.org/rustc/what-is-rustc.html)
54+
4. [Rust Cheat Sheet](https://cheats.rs)

0 commit comments

Comments
 (0)