summaryrefslogtreecommitdiffstats
path: root/sqv/src
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-11-16 11:04:36 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-12-14 14:05:21 +0100
commitd411fb80983a4d4ebb9f023599c38e34a26551e7 (patch)
treefc970ff950923f7c400b24163f4079b3c6ba48cf /sqv/src
parent251541318fdf453c5d756794b906cce2fd69b675 (diff)
openpgp: Introduce trait Parse.
- Trait Parse introduces a uniform interface to parse packets, messages, keys, and related data structures.
Diffstat (limited to 'sqv/src')
-rw-r--r--sqv/src/sqv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqv/src/sqv.rs b/sqv/src/sqv.rs
index 963fcf1b..495ec5dc 100644
--- a/sqv/src/sqv.rs
+++ b/sqv/src/sqv.rs
@@ -16,7 +16,7 @@ use std::collections::{HashMap, HashSet};
use openpgp::{TPK, Packet, packet::Signature, KeyID};
use openpgp::constants::HashAlgorithm;
-use openpgp::parse::{PacketParserResult, PacketParser};
+use openpgp::parse::{Parse, PacketParserResult, PacketParser};
use openpgp::tpk::TPKParser;
mod sqv_cli;