From 391a4b92c977cd64dfd131f3e29b0bc8d756d064 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Mon, 9 Mar 2020 11:42:45 +0100 Subject: Switch from failure to anyhow. - Use the anyhow crate instead of failure to implement the dynamic side of our error handling. anyhow::Error derefs to dyn std::error::Error, allowing better interoperability with other stdlib-based error handling libraries. - Fixes #444. --- sqv/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sqv/Cargo.toml') diff --git a/sqv/Cargo.toml b/sqv/Cargo.toml index b41f110e..13dce931 100644 --- a/sqv/Cargo.toml +++ b/sqv/Cargo.toml @@ -22,9 +22,10 @@ maintenance = { status = "actively-developed" } [dependencies] sequoia-openpgp = { path = "../openpgp", version = "0.15", default-features = false } +anyhow = "1" chrono = "0.4" clap = "2.32.0" -failure = "0.1.2" + [build-dependencies] clap = "2.27.1" -- cgit v1.2.3