Skip to content

Commit bf8d620

Browse files
authored
Merge branch 'main' into patch-4
2 parents 65bba04 + be8b6d8 commit bf8d620

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

README.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,17 @@ While systems programming languages have greatly evolved since the introduction
4444

4545
Rust is a highly concurrent and high-performance language that focuses on safety and speed, memory management, and writing clean code. It also guarantees thread safety, and it aims to improve the performance of existing applications. It has been backed by Mozilla to solve the critical problem of concurrency.
4646

47-
### [Beginning Rust - From Novice to Professional](https://www.oreilly.com/library/view/beginning-rust-from/9781484234686/)
47+
### [Beginning Rust - Get Started with Rust 2021 Edition](https://www.oreilly.com/library/view/beginning-rust-get/9781484272084/) 2nd Edition
4848

49-
<img src="https://learning.oreilly.com/library/cover/9781484234686/250w/" width="120px"/>
49+
<img src="https://learning.oreilly.com/library/cover/9781484272084/250w/" width="120px"/>
5050

51-
Learn to program with Rust in an easy, step-by-step manner on Unix, Linux shell, macOS and the Windows command line. As you read this book, you’ll build on the knowledge you gained in previous chapters and see what Rust has to offer.
51+
Learn to program with Rust 2021 Edition, in an easy, step-by-step manner on Unix, the Linux shell, macOS, and the Windows command line. As you read this book, you’ll build on the knowledge you gained in previous chapters and see what Rust has to offer.
5252

5353
Beginning Rust starts with the basics of Rust, including how to name objects, control execution flow, and handle primitive types. You’ll see how to do arithmetic, allocate memory, use iterators, and handle input/output. Once you have mastered these core skills, you’ll work on handling errors and using the object-oriented features of Rust to build robust Rust applications in no time.
5454

55-
Only basic knowledge of programming is required, preferably in C or C++. To understand this book, it's enough to know what integers and floating-point numbers are, and to distinguish identifiers from string literals.
55+
Only a basic knowledge of programming in C or C++ and familiarity with a command console are required. After reading this book, you’ll be ready to build simple Rust applications.
56+
57+
Those who are new to Rust and who have at least some prior experience with programming in general: some C/C++ is recommended particularly.
5658

5759
### [Rust Cookbook](https://www.packtpub.com/product/rust-cookbook/9781785880254)
5860

@@ -215,6 +217,19 @@ While there are some good resources on how to learn the Rust programming languag
215217

216218
Fullstack Rust solves that. In this book we show you how to use Rust to build incredibly fast web-servers, build command-line tools, and compile apps to run in the browser with Web Assembly (WASM).
217219

220+
### [Asynchronous Programming in Rust](https://www.packtpub.com/en-mt/product/asynchronous-programming-in-rust-9781805128137)
221+
222+
<img src="https://content.packt.com/_/image/original/B20892/cover_image.jpg" width="120px"/>
223+
224+
Asynchronous Programming in Rust: Learn asynchronous programming by building working examples of futures, green threads, and runtimes
225+
226+
Step into the world of asynchronous programming with confidence by conquering the challenges of unclear concepts with this hands-on guide. Using functional examples, this book simplifies the trickiest concepts, exploring goroutines, fibers, futures, and callbacks to help you navigate the vast Rust async ecosystem with ease. You’ll start by building a solid foundation in asynchronous programming and explore diverse strategies for modeling program flow. The book then guides you through concepts like epoll, coroutines, green threads, and callbacks using practical examples. The final section focuses on Rust, examining futures, generators, and the reactor-executor pattern. You’ll apply your knowledge to create your own runtime, solidifying expertise in this dynamic domain. Throughout the book, you’ll not only gain proficiency in Rust's async features but also see how Rust models asynchronous program flow. By the end of the book, you'll possess the knowledge and practical skills needed to actively contribute to the Rust async ecosystem.
227+
228+
Key benefits
229+
- Master asynchronous Rust through examples focusing on key concepts
230+
- Build a solid understanding of concepts such as coroutines, fibers, futures, and callbacks
231+
- Explore Rust's futures, craft your own runtime, and excel in handling stacks, ABIs, syscalls, and inline assembly
232+
218233
**Advanced Books**
219234
---
220235

0 commit comments

Comments
 (0)