Skip to content

Commit c7f1d01

Browse files
authored
Merge pull request #78 from eventhelix/main
Adds Rust Under the Hood
2 parents 1cf2727 + edb033f commit c7f1d01

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,12 +427,20 @@ Code Like a Pro in Rust will make you a more productive Rust programmer. This ex
427427

428428
You will learn the basics of REST APIs, followed by the ecosystem and usual system architecture around a typical REST API. We will explain how to make your API secure, scalable and observable, so you can move it to production confidently. We will also show you how to implement automated testing, continuous integration and delivery. We will provide examples for cloud deployment scenarios too. The code samples are based on the Tokio-Hyper-Tower-Axum stack.
429429

430+
431+
### [Rust Under the Hood](https://www.amazon.com/dp/B0D7FQB3DH)
432+
433+
<img src="https://eventhelix.com/rust/rust-under-the-hood/rust-under-the-hood-cover-344x450.png" width="120px"/>
434+
435+
"Rust Under the Hood" offers an in-depth exploration of Rust's core mechanics by examining the assembly code generated by its compiler. This comprehensive guide is perfect for Rust enthusiasts at all levels, providing unique insights into memory management, compiler optimizations, and mapping high-level Rust features to low-level assembly. The book covers a wide range of topics with practical examples and detailed explanations, including SIMD, async/await, closures, enums, and strings. Readers will better understand how Rust represents data structures, optimizes performance, and handles asynchronous programming. Ideal for anyone interested in the inner workings of high-level languages and Rust developers aiming to deepen their knowledge, "Rust Under the Hood" is an essential addition to your Rust library.
436+
430437
### [The Rust Performance Book](https://nnethercote.github.io/perf-book/title-page.html) *Free*
431438

432439
This book contains techniques that can improve the performance-related characteristics of Rust programs, such as runtime speed, memory usage, and binary size. This book also focuses on techniques that are practical and proven: many are accompanied by links to pull requests or other resources that show how the technique was used on a real-world Rust program. It reflects the primary author’s background, being somewhat biased towards compiler development and away from other areas such as scientific computing.
433440

434441
This book is aimed at intermediate and advanced Rust users. Beginner Rust users have more than enough to learn and these techniques are likely to be an unhelpful distraction to them.
435442

443+
436444
### [Rust Compiler Development Guide](https://rustc-dev-guide.rust-lang.org/getting-started.html) *Free*
437445

438446
The Rustc Book (full title Rustc Dev Guide) provides a guide for developers who want to make changes to the Rust compiler, rustc. This resource is for those who want to understand how the Rust compiler works and learn how to make changes to it.

0 commit comments

Comments
 (0)