summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@pep-project.org>2017-12-06 18:21:01 +0100
committerJustus Winter <justus@pep-project.org>2017-12-12 12:48:05 +0100
commitc1082dbc8461a27fe7e8967084a3f072a2880ed1 (patch)
tree7c5a6894aebf68c20fc7ecd24d19172a520032f5 /src/lib.rs
parent6f6a2e8fc95b7506f769f122b4b3e5982a52336c (diff)
Retrieve and send keys using the hkps? protocol.
- Use hyper for http, hyper-tls for https. - Provide an easy constructor for the hkps pool. - Add ffi glue.
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 49132e82..c5821007 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -10,6 +10,9 @@ extern crate nom;
extern crate flate2;
extern crate bzip2;
+#[macro_use]
+extern crate percent_encoding;
+
pub mod openpgp;
pub mod keys;
pub mod store;