summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2020-02-20 22:10:48 +0100
committerNeal H. Walfield <neal@pep.foundation>2020-02-20 22:11:54 +0100
commita57262d26636590eaec123d7b60b9efdd604a61e (patch)
treec3b24fe46302468ce68ff7317ebb2de314bfec42 /tool
parent291edaec90f6ef8dd6daab96478bd7d33a0066ab (diff)
openpgp: Add the bundle method to the Amalgamation trait.
- Add the `bundle()` method to the Amalgamation trait instead of implementing it on each struct.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/commands/inspect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/inspect.rs b/tool/src/commands/inspect.rs
index c0e038c6..6d423239 100644
--- a/tool/src/commands/inspect.rs
+++ b/tool/src/commands/inspect.rs
@@ -4,7 +4,7 @@ use clap;
extern crate sequoia_openpgp as openpgp;
use crate::openpgp::{Packet, Result};
-use crate::openpgp::cert::components::ValidAmalgamation;
+use crate::openpgp::cert::components::{Amalgamation, ValidAmalgamation};
use openpgp::packet::key::PublicParts;
use crate::openpgp::parse::{Parse, PacketParserResult};
use crate::openpgp::policy::Policy;