diff options
author | Teddy Wing | 2021-03-13 23:57:30 +0100 |
---|---|---|
committer | Teddy Wing | 2021-03-13 23:57:30 +0100 |
commit | 5455b0c072a7626107a5994a6e8ba32b64c2ea17 (patch) | |
tree | 7c4eec18e3efafe17fa856d28d3e113edae338fd /Cargo.lock | |
parent | 39e56152f825f3550f5fdf04b075b3fd594e97c9 (diff) | |
download | mutt-ottolangy-5455b0c072a7626107a5994a6e8ba32b64c2ea17.tar.bz2 |
Add context to errors
Include the 'anyhow' crate to add additional context to errors.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -7,6 +7,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217" [[package]] +name = "anyhow" +version = "1.0.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1" + +[[package]] name = "autocfg" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -83,6 +89,7 @@ dependencies = [ name = "ottolangy" version = "0.0.1" dependencies = [ + "anyhow", "mailparse", "whatlang", "xdg", |