From 2f8d791c518bec4429441df6e00d7453657220d3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 31 May 2021 14:16:35 +0200 Subject: [PATCH] Add "Aiming for idiomatic Rust" by @shakyshane --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 426fce4..6496006 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ This repository collects resources for writing clean, idiomatic Rust code. [Plea ### 2021 +* [Aiming for idiomatic Rust](https://shane-o.dev/blog/aiming-for-idiomatic-rust) by [Shane Osbourne](https://shane-o.dev/) - Discusses different ways to solve a popular coding puzzle, "balanced brackets", in Rust. * [Wrapping errors in Rust](https://edgarluque.com/blog/wrapping-errors-in-rust) by [Edgar Luque](https://github.com/edg-l) - Wrapping `reqwest::Error` and a custom error type as an enum to make library usage easier. Also mentions [thiserror](https://github.com/dtolnay/thiserror) to automate that process. ### 2020