From 191cf0b741f968821ec71519d79c4ac370217b73 Mon Sep 17 00:00:00 2001 From: Andreas Fackler Date: Mon, 8 Oct 2018 13:07:40 +0200 Subject: [PATCH] Reexport pairing. Since we are reexporting some of the pairing types, we should also export pairing itself, to make all the matching traits available and avoid version conflicts. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c24eb94..c6e2089 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,7 +14,7 @@ extern crate lazy_static; #[macro_use] extern crate log; extern crate memsec; -extern crate pairing; +pub extern crate pairing; extern crate rand; #[macro_use] extern crate rand_derive;