summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-04-02 16:19:47 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-04-02 16:23:40 +0200
commit80f359aa53f5672bca64030535cb5afae080acce (patch)
treebb74dcc5759dc9de1f55490364b490e13dc36d2e /openpgp/src/serialize/stream.rs
parentcaeb69d5988b7877e2ebfa7dbd90191b2c586785 (diff)
openpgp: Move the writer module to serialize::stream.
Diffstat (limited to 'openpgp/src/serialize/stream.rs')
-rw-r--r--openpgp/src/serialize/stream.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/serialize/stream.rs b/openpgp/src/serialize/stream.rs
index c347d29e..3c810a14 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -35,7 +35,6 @@ use crate::packet::header::BodyLength;
use super::{
PartialBodyFilter,
Marshal,
- writer,
};
use crate::types::{
AEADAlgorithm,
@@ -45,6 +44,7 @@ use crate::types::{
SymmetricAlgorithm,
};
+pub mod writer;
#[cfg(feature = "compression-deflate")]
pub mod padding;