fix reexports finally
This commit is contained in:
parent
67f1b080c2
commit
c2af46cac3
@ -2,7 +2,7 @@
|
|||||||
name = "pairing"
|
name = "pairing"
|
||||||
|
|
||||||
# Remember to change version string in README.md.
|
# Remember to change version string in README.md.
|
||||||
version = "0.16.1"
|
version = "0.16.2"
|
||||||
authors = [
|
authors = [
|
||||||
"Sean Bowe <ewillbefull@gmail.com>",
|
"Sean Bowe <ewillbefull@gmail.com>",
|
||||||
"Jack Grigg <jack@z.cash>",
|
"Jack Grigg <jack@z.cash>",
|
||||||
|
@ -22,8 +22,11 @@ extern crate serde_derive;
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub mod tests;
|
pub mod tests;
|
||||||
|
|
||||||
pub extern crate ff;
|
extern crate ff as imported_ff;
|
||||||
pub use ff::*;
|
|
||||||
|
pub mod ff {
|
||||||
|
pub use imported_ff::*;
|
||||||
|
}
|
||||||
|
|
||||||
pub mod bls12_381;
|
pub mod bls12_381;
|
||||||
pub mod bn256;
|
pub mod bn256;
|
||||||
|
Loading…
Reference in New Issue
Block a user