summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJustus Winter <justus@pep-project.org>2017-12-19 13:09:59 +0100
committerJustus Winter <justus@pep-project.org>2017-12-19 13:12:19 +0100
commit213b34ef244f4ec5eb96e0ab013d1a4d70c122cf (patch)
treefe3a1e8600ddbbf56cb66f9d725fafa65fee98f8 /src
parenta38f461842d3be4b9ab38007ca65f7efe74d1e55 (diff)
Improve the 'sequoia' crate.
- Improve the documentation. - Re-export 'openpgp'. - Re-export the other crates without prefix.
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3d15a736..8040fbfb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,8 +1,11 @@
-//! Modular Sequoia is modular.
+//! A modular OpenPGP implementation.
+//!
+//! Sequoia consists of several modules. This crate conveniently
+//! re-exports the other crates.
-pub extern crate sequoia_core;
-pub extern crate sequoia_net;
-pub extern crate sequoia_store;
+pub extern crate openpgp;
+pub extern crate sequoia_core as core;
+pub extern crate sequoia_net as net;
+pub extern crate sequoia_store as store;
extern crate buffered_reader;
-extern crate openpgp;