From 359286a87d6cc170eb09e87d57f8bc3325085d47 Mon Sep 17 00:00:00 2001 From: Julio Montes Date: Fri, 28 Aug 2020 09:30:03 -0500 Subject: [PATCH] agent/rustjail: Add anyhow dependency anyhow provides `anyhow::Error`, a trait object based error type for easy idiomatic error handling in Rust applications. Signed-off-by: Julio Montes --- src/agent/rustjail/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/agent/rustjail/Cargo.toml b/src/agent/rustjail/Cargo.toml index db07963c0d..9bd7023203 100644 --- a/src/agent/rustjail/Cargo.toml +++ b/src/agent/rustjail/Cargo.toml @@ -24,3 +24,4 @@ scan_fmt = "0.2" regex = "1.1" path-absolutize = "1.2.0" dirs = "3.0.1" +anyhow = "1.0.32"