summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/writer/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/serialize/writer/mod.rs')
-rw-r--r--openpgp/src/serialize/writer/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/openpgp/src/serialize/writer/mod.rs b/openpgp/src/serialize/writer/mod.rs
index a02339b0..a982d8ac 100644
--- a/openpgp/src/serialize/writer/mod.rs
+++ b/openpgp/src/serialize/writer/mod.rs
@@ -12,12 +12,12 @@ pub use self::writer_deflate::{ZIP, ZLIB};
use std::fmt;
use std::io;
-use crypto::{aead, symmetric};
-use constants::{
+use crate::crypto::{aead, symmetric};
+use crate::constants::{
AEADAlgorithm,
SymmetricAlgorithm,
};
-use {
+use crate::{
Result,
crypto::SessionKey,
};