summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2017-10-28 22:08:42 +0200
committerNeal H. Walfield <neal@gnu.org>2017-10-28 22:11:49 +0200
commit1d9172f63878efe7e698456881c10a0803bd30b2 (patch)
tree582b14c71974b2997d2dc2014dc9998c08605b9c /src/lib.rs
parentbfb6fa775659b13bd8a4d618a583cdb8a0b9af6e (diff)
Add support for parsing compressed data packets.
- Use the flate2 and bzip2 crates for the actual decompression.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index cd1b07be..89507863 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,6 +7,9 @@ extern crate num_derive;
#[macro_use]
extern crate nom;
+extern crate flate2;
+extern crate bzip2;
+
pub mod openpgp;
pub mod key_store;
pub mod net;