summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-06-13 16:42:14 +0200
committerJustus Winter <justus@sequoia-pgp.org>2018-06-14 07:46:30 +0200
commit64e30bfaab82e4349b50e0f1673d6a3912ababb0 (patch)
treec688b268d11500b2b8f453a57c885be451539f06 /tool
parent5b8158ea33c15b60782e3acf3fe2e0dad221852c (diff)
openpgp: Move Tag into the packet module.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/commands.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tool/src/commands.rs b/tool/src/commands.rs
index e992904d..37bd442a 100644
--- a/tool/src/commands.rs
+++ b/tool/src/commands.rs
@@ -5,7 +5,8 @@ use std::io::{self, Write};
use rpassword;
extern crate openpgp;
-use openpgp::{Packet, Tag};
+use openpgp::Packet;
+use openpgp::packet::Tag;
use openpgp::serialize::stream::{
wrap, LiteralWriter, Encryptor, EncryptionMode,
};