summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorIgor Matuszewski <igor@sequoia-pgp.org>2020-10-06 16:15:31 +0200
committerIgor Matuszewski <xanewok@gmail.com>2020-10-06 20:21:56 +0000
commit52ee6a8fa2d326ba93fd4cbcf134a231bc438d95 (patch)
tree121922f47131b9ced2a71ce59b5b5efe459e5933 /src/lib.rs
parentd6e7a4d92008f030ed8108ae62eb97e37c624e0d (diff)
Remove top-level sequoia package
This runs into surprising interactions when trying to build member packages with other than default feature set. See https://gitlab.com/sequoia-pgp/sequoia/-/issues/575 for more info.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib.rs b/src/lib.rs
deleted file mode 100644
index 2b764c9e..00000000
--- a/src/lib.rs
+++ /dev/null
@@ -1,35 +0,0 @@
-//! A modular OpenPGP implementation.
-//!
-//! Sequoia consists of several modules. This crate conveniently
-//! re-exports the other crates.
-//!
-//! # Example
-//!
-//! ```
-//! use std::io::Read;
-//! extern crate sequoia_openpgp as openpgp;
-//! # use std::io::Result;
-//! # fn main() { f().unwrap(); }
-//! # fn f() -> Result<()> {
-//!
-//! let mut reader = openpgp::armor::Reader::from_bytes(
-//! b"-----BEGIN PGP ARMORED FILE-----
-//!
-//! SGVsbG8gd29ybGQh
-//! =s4Gu
-//! -----END PGP ARMORED FILE-----", None);
-//!
-//! let mut content = String::new();
-//! reader.read_to_string(&mut content)?;
-//! assert_eq!(content, "Hello world!");
-//! # Ok(())
-//! # }
-//! ```
-
-// XXX: It would be nice to re-export the macros too.
-pub extern crate sequoia_openpgp as openpgp;
-pub extern crate sequoia_core as core;
-pub extern crate sequoia_net as net;
-pub extern crate sequoia_store as store;
-
-