From 9e97d454f090fc2b3dcd30a0fc9d2a68f130bac0 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Sun, 2 Jan 2022 20:13:17 +0100 Subject: [PATCH] Add anyhow dependency --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index e8e1073..12da210 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,6 +26,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "anyhow" +version = "1.0.52" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3" + [[package]] name = "app_dirs2" version = "2.3.3" @@ -1278,6 +1284,7 @@ name = "tealdeer" version = "1.5.0" dependencies = [ "ansi_term", + "anyhow", "app_dirs2", "assert_cmd", "atty", diff --git a/Cargo.toml b/Cargo.toml index 45a2f5d..82d7cc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ path = "src/main.rs" [dependencies] ansi_term = "0.12.0" +anyhow = "1" app_dirs = { version = "2", package = "app_dirs2" } atty = "0.2" clap = { version = "3", features = ["std", "derive", "suggestions", "color"], default-features = false }