reexport properly

This commit is contained in:
Alex Vlasov 2019-03-04 19:49:14 +03:00
parent 443e40de5f
commit 0c5a295c8a

View File

@ -12,7 +12,6 @@
#![deny(missing_debug_implementations)] #![deny(missing_debug_implementations)]
extern crate byteorder; extern crate byteorder;
extern crate ff;
extern crate rand; extern crate rand;
extern crate hex; extern crate hex;
@ -23,6 +22,7 @@ extern crate serde_derive;
#[cfg(test)] #[cfg(test)]
pub mod tests; pub mod tests;
pub extern crate ff;
pub use ff::*; pub use ff::*;
pub mod bls12_381; pub mod bls12_381;