summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-11-15 11:46:29 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-11-15 11:48:50 +0100
commitca44e50faa3741fd3d70bcab6a8ffa570ff5e151 (patch)
tree4e348e179005040a105d7cc8b9e6812d11f29080
parent7070e541fe5281a6557faa6af88907e9371c6e12 (diff)
openpgp: Make modules private.
-rw-r--r--openpgp/src/parse/parse.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/parse/parse.rs b/openpgp/src/parse/parse.rs
index 3f452cbd..a15b5fe5 100644
--- a/openpgp/src/parse/parse.rs
+++ b/openpgp/src/parse/parse.rs
@@ -60,7 +60,7 @@ mod partial_body;
use self::partial_body::BufferedReaderPartialBodyFilter;
use packet::signature::subpacket::SubpacketArea;
-pub mod key;
+mod key;
mod packet_pile_parser;
pub use self::packet_pile_parser::PacketPileParser;
@@ -72,7 +72,7 @@ mod packet_parser_builder;
pub use self::packet_parser_builder::PacketParserBuilder;
pub mod map;
-pub mod mpis;
+mod mpis;
pub mod stream;
// Whether to trace execution by default (on stderr).