From 28bed7faff228a22093954d09a8e975fa5c28ea5 Mon Sep 17 00:00:00 2001 From: Lux Aliaga Date: Sat, 17 Sep 2022 17:42:17 -0300 Subject: [PATCH] vento: Added Anyhow as a dependency For better error handling. (thank you @j0 for the suggestion) --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 83188ea..9fd95d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,12 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "anyhow" +version = "1.0.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" + [[package]] name = "atty" version = "0.2.14" @@ -173,6 +179,7 @@ checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" name = "vento" version = "0.2.0" dependencies = [ + "anyhow", "colored", "dirs", "fs_extra", diff --git a/Cargo.toml b/Cargo.toml index e0d80c4..78709f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,3 +9,4 @@ edition = "2021" dirs = "4.0.0" colored = "2.0.0" fs_extra = "1.2.0" +anyhow = "1.0.65"