summaryrefslogtreecommitdiffstats
path: root/src/openpgp/mod.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@pep-project.org>2017-12-12 17:16:00 +0100
committerJustus Winter <justus@pep-project.org>2017-12-13 13:55:20 +0100
commitc86ad83ae31d44aeab3317e5e05d6d63e428f0e0 (patch)
tree12d1aac77f256e733104e98faf9143152eacd573 /src/openpgp/mod.rs
parentc0cab61441df7a0334f817c2cc4817a0910e1193 (diff)
Split up Sequoia.
- Split up into six crates: buffered-reader, openpgp, sequoia-core, sequoia-ffi, sequoia-net, and sequoia-store. - Adjust imports accordingly.
Diffstat (limited to 'src/openpgp/mod.rs')
-rw-r--r--src/openpgp/mod.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/openpgp/mod.rs b/src/openpgp/mod.rs
deleted file mode 100644
index 0b27e330..00000000
--- a/src/openpgp/mod.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// Hack so that the file doesn't have to be named mod.rs.
-// Unfortunately, it seems that putting 'pub mod xxx' declarations in
-// an included file confuses rust (it looks for the module in the
-// wrong place). Hence, that here as well.
-
-pub mod armor;
-pub mod parse;
-pub mod tpk;
-pub mod types;
-
-include!("openpgp.rs");