summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-06-11 14:39:22 +0200
committerJustus Winter <justus@sequoia-pgp.org>2018-06-11 14:39:22 +0200
commit25b9ad3c448ff28dfad8bf8bedcaefdcc6c5495f (patch)
tree13dd2080ebc7123ee1af445607a05666f54baf77 /tool
parent3c29d2fdc7fa884b57267eda4077ddf60564e267 (diff)
openpgp: Do not re-export *Algorithm in the root.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/sqv.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tool/src/sqv.rs b/tool/src/sqv.rs
index 159ca319..3c1acbd2 100644
--- a/tool/src/sqv.rs
+++ b/tool/src/sqv.rs
@@ -13,7 +13,8 @@ use std::process::exit;
use clap::{App, Arg, AppSettings};
-use openpgp::{HashAlgorithm, TPK, Packet, Signature, KeyID, Message};
+use openpgp::{TPK, Packet, Signature, KeyID, Message};
+use openpgp::constants::HashAlgorithm;
use openpgp::parse::PacketParser;
// The argument parser.