From 86d1ba3a44b48212e0f1ed61d1e5e3ec5e51c7d2 Mon Sep 17 00:00:00 2001 From: Jakub Jarosz Date: Tue, 7 Jan 2025 06:38:20 +0000 Subject: [PATCH] Add The Secrets of Rust: Tools --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 7f21e98..491134b 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,12 @@ Throughout this unique book, you’ll find useful code samples that are easy to Write Powerful Rust Macros is a comprehensive guide to creating macros in Rust. You’ll start your journey with declarative macros, then quickly move on to the powerful procedural macros to build your own domain-specific language. Learn how to create public fields, work with custom attributes, integrate your macros with other crates, write effective tests to ensure your macros are reliable and bug-free, and even share your macros with other developers. +### [The Secrets of Rust: Tools](https://bitfieldconsulting.com/books/rust-tools) + + + +The Secrets of Rust: Tools is aimed at those who have learned the basics of Rust, and would like to start writing useful programs with it. The book starts very simply, and works through developing a series of increasingly challenging projects, including a memo tool and a weather API client, guided by tests. Along the way, readers will learn some useful patterns and practices for Rust programs, and gain experience with important crates such as `clap`, `anyhow`, and `serde`. + **Advanced Books** ---