summaryrefslogtreecommitdiffstats
path: root/tool/tests
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 /tool/tests
parent251541318fdf453c5d756794b906cce2fd69b675 (diff)
openpgp: Introduce trait Parse.
- Trait Parse introduces a uniform interface to parse packets, messages, keys, and related data structures.
Diffstat (limited to 'tool/tests')
-rw-r--r--tool/tests/sq-sign.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/tests/sq-sign.rs b/tool/tests/sq-sign.rs
index 696f662e..28fcce64 100644
--- a/tool/tests/sq-sign.rs
+++ b/tool/tests/sq-sign.rs
@@ -9,6 +9,7 @@ use tempfile::TempDir;
extern crate sequoia_openpgp as openpgp;
use openpgp::{Packet, PacketPile, TPK};
use openpgp::constants::{CompressionAlgorithm, DataFormat, SignatureType};
+use openpgp::parse::Parse;
use openpgp::serialize::stream::{Message, Signer, Compressor, LiteralWriter};
fn p(filename: &str) -> String {