fix reexports finally
This commit is contained in:
parent
67f1b080c2
commit
c2af46cac3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user