summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-03-21 12:11:55 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-03-23 11:33:43 +0100
commit560faea8ee7ea5e0535f642a32ff36a2bb5279a1 (patch)
treea9982dd5a4dd44b0bd52ac427722192164e9a403 /tool
parentdc0043e28aa140bc2f6509fad04652e9e71cba8a (diff)
openpgp: Move the TPK type definition to openpgp proper.
- We define all types in the root of the openpgp crate, and their implementations in separate modules. This makes using these types much simpler, yet keeps the root from getting too crowded. - Also fix all users accordingly.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/main.rs b/tool/src/main.rs
index c96178fd..01bbddb4 100644
--- a/tool/src/main.rs
+++ b/tool/src/main.rs
@@ -21,7 +21,7 @@ extern crate sequoia_net;
extern crate sequoia_store;
use openpgp::{armor, Fingerprint};
-use openpgp::tpk::TPK;
+use openpgp::TPK;
use sequoia_core::{Context, NetworkPolicy};
use sequoia_net::KeyServer;
use sequoia_store::{Store, LogIter};