aboutsummaryrefslogtreecommitdiffstats
path: root/components/rand/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/rand/lib.rs')
-rw-r--r--components/rand/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/rand/lib.rs b/components/rand/lib.rs
index 5a10bf9e3c1..56c20522b76 100644
--- a/components/rand/lib.rs
+++ b/components/rand/lib.rs
@@ -19,13 +19,13 @@ extern crate log;
extern crate rand;
extern crate uuid;
-pub use rand::{Rand, Rng, SeedableRng};
#[cfg(target_pointer_width = "64")]
use rand::isaac::Isaac64Rng as IsaacWordRng;
#[cfg(target_pointer_width = "32")]
use rand::isaac::IsaacRng as IsaacWordRng;
use rand::os::OsRng;
-use rand::reseeding::{ReseedingRng, Reseeder};
+use rand::reseeding::{Reseeder, ReseedingRng};
+pub use rand::{Rand, Rng, SeedableRng};
use std::cell::RefCell;
use std::mem;
use std::rc::Rc;