summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/parser/low_level/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/cert/parser/low_level/mod.rs')
-rw-r--r--openpgp/src/cert/parser/low_level/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/cert/parser/low_level/mod.rs b/openpgp/src/cert/parser/low_level/mod.rs
index 207c556e..3b1aa48c 100644
--- a/openpgp/src/cert/parser/low_level/mod.rs
+++ b/openpgp/src/cert/parser/low_level/mod.rs
@@ -70,7 +70,7 @@ pub enum CertParserError {
OpenPGP(Error),
}
-impl From<CertParserError> for failure::Error {
+impl From<CertParserError> for anyhow::Error {
fn from(err: CertParserError) -> Self {
match err {
CertParserError::Parser(p) => p.into(),