summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Matuszewski <igor@sequoia-pgp.org>2020-03-31 12:18:44 +0200
committerIgor Matuszewski <xanewok@gmail.com>2020-03-31 11:10:44 +0000
commit9b10a296ed797feb04a78d7fe4cee439b546b740 (patch)
tree20175c07a403e6f21ef9b1062ebf8e6c00da487d
parent4dc499e5ba33f59b1fef0a3f0efcf936b706082d (diff)
openpgp: Remove explicit extern crates
-rw-r--r--openpgp/src/lib.rs22
1 files changed, 2 insertions, 20 deletions
diff --git a/openpgp/src/lib.rs b/openpgp/src/lib.rs
index 4b1f0183..f41eeba6 100644
--- a/openpgp/src/lib.rs
+++ b/openpgp/src/lib.rs
@@ -44,31 +44,13 @@
#![warn(missing_docs)]
-extern crate lalrpop_util;
-
-extern crate buffered_reader;
-
-extern crate memsec;
-extern crate nettle;
-
-#[cfg(feature = "compression-deflate")]
-extern crate flate2;
-#[cfg(feature = "compression-bzip2")]
-extern crate bzip2;
-
#[cfg(test)]
#[macro_use]
extern crate quickcheck;
-#[cfg(not(test))]
-extern crate quickcheck;
-
-extern crate rand;
-
-#[macro_use] extern crate lazy_static;
+#[macro_use]
+extern crate lazy_static;
-extern crate idna;
-
#[macro_use]
mod macros;