Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
fix reexports finally
Browse files Browse the repository at this point in the history
  • Loading branch information
shamatar committed Mar 5, 2019
1 parent 67f1b08 commit c2af46c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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>",
Expand Down
7 changes: 5 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c2af46c

Please sign in to comment.