summaryrefslogtreecommitdiff
path: root/guides/languages/rust
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2025-01-14 22:48:35 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2025-01-14 23:26:44 +0100
commitcf8a3f15ee1c80b874be10cbdd34496b84560f59 (patch)
treec7a77d6938c6d8d539a6ae1e72160732d440ccf5 /guides/languages/rust
parentfaf50994d58d2651a2ab1bb1ed94dce1feb246bd (diff)
downloadmemory-leaks-cf8a3f15ee1c80b874be10cbdd34496b84560f59.tar.xz
Sort guides up a bit
Diffstat (limited to 'guides/languages/rust')
-rw-r--r--guides/languages/rust/error-handling.org16
1 files changed, 16 insertions, 0 deletions
diff --git a/guides/languages/rust/error-handling.org b/guides/languages/rust/error-handling.org
new file mode 100644
index 0000000..d56ab11
--- /dev/null
+++ b/guides/languages/rust/error-handling.org
@@ -0,0 +1,16 @@
+* Crates
+Error-handling crates seem to rise and fall pretty regularly, each new
+crate leveraging new primitives in the standard library to push
+ergonomics even further:
+
+- error_chain
+- failure
+- snafu
+- thiserror
+- anyhow
+- eyre
+* Documentation
+- Error handling now has a [[https://github.com/rust-lang/project-error-handling][dedicated project group]] under the [[https://www.rust-lang.org/governance/teams/library][library
+ team]].
+- [[https://nrc.github.io/error-docs/intro.html][Nick Cameron's error-handling guide]] (2022)
+- [[https://www.howtocodeit.com/articles/the-definitive-guide-to-rust-error-handling][Angus Morrison's "Definitive Guide"]] (2024)