fix reexports finally

This commit is contained in:
Alex Vlasov 2019-03-05 09:47:43 +01:00
parent 67f1b080c2
commit c2af46cac3
2 changed files with 6 additions and 3 deletions

@ -2,7 +2,7 @@
name = "pairing"
# Remember to change version string in README.md.
version = "0.16.1"
version = "0.16.2"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",

@ -22,8 +22,11 @@ extern crate serde_derive;
#[cfg(test)]
pub mod tests;
pub extern crate ff;
pub use ff::*;
extern crate ff as imported_ff;
pub mod ff {
pub use imported_ff::*;
}
pub mod bls12_381;
pub mod bn256;