summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 8040fbfb6ad8fbc9869385694f31abec99fb95b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
//! A modular OpenPGP implementation.
//!
//! Sequoia consists of several modules.  This crate conveniently
//! re-exports the other crates.

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;