summaryrefslogtreecommitdiffstats
path: root/openpgp/examples/statistics.rs
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 /openpgp/examples/statistics.rs
parent5b8158ea33c15b60782e3acf3fe2e0dad221852c (diff)
openpgp: Move Tag into the packet module.
Diffstat (limited to 'openpgp/examples/statistics.rs')
-rw-r--r--openpgp/examples/statistics.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/examples/statistics.rs b/openpgp/examples/statistics.rs
index 798ee92d..27cdc946 100644
--- a/openpgp/examples/statistics.rs
+++ b/openpgp/examples/statistics.rs
@@ -13,8 +13,8 @@ use std::fs::File;
extern crate buffered_reader;
use buffered_reader::BufferedReaderGeneric;
extern crate openpgp;
-use openpgp::{Packet, Tag};
-use openpgp::packet::BodyLength;
+use openpgp::Packet;
+use openpgp::packet::{BodyLength, Tag};
use openpgp::parse::PacketParser;
fn main() {