From 13769a8f1b0da273f6f14fa1a6d3098581f859d0 Mon Sep 17 00:00:00 2001 From: Aitor Ruano Date: Wed, 22 Jan 2020 14:50:27 +0100 Subject: [PATCH] reorder imports --- src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index fd659bd..2da43c8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,10 +19,11 @@ mod field; mod math; mod share; -use field::GF256; -pub use share::Share; use std::collections::HashSet; +pub use share::Share; +use field::GF256; + /// Tuple struct which implements methods to generate shares and recover secrets over a 256 bits Galois Field. /// Its only parameter is the minimum shares threshold. ///