summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/aed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/packet/aed.rs')
-rw-r--r--openpgp/src/packet/aed.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/openpgp/src/packet/aed.rs b/openpgp/src/packet/aed.rs
index 6fb8f630..745e925c 100644
--- a/openpgp/src/packet/aed.rs
+++ b/openpgp/src/packet/aed.rs
@@ -2,14 +2,14 @@
use std::ops::{Deref, DerefMut};
-use constants::{
+use crate::constants::{
AEADAlgorithm,
SymmetricAlgorithm,
};
-use packet::{self, Common};
-use Packet;
-use Error;
-use Result;
+use crate::packet::{self, Common};
+use crate::Packet;
+use crate::Error;
+use crate::Result;
/// Holds an AEAD encrypted data packet.
///