We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a2e9ad commit 9bea79bCopy full SHA for 9bea79b
src/liballoc/benches/btree/map.rs
@@ -12,7 +12,7 @@
12
use std::iter::Iterator;
13
use std::vec::Vec;
14
use std::collections::BTreeMap;
15
-use std::__rand::{Rng, thread_rng};
+use rand::{Rng, thread_rng};
16
use test::{Bencher, black_box};
17
18
macro_rules! map_insert_rand_bench {
src/liballoc/benches/slice.rs
@@ -8,7 +8,7 @@
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
11
-use std::__rand::{thread_rng};
+use rand::{thread_rng};
use std::mem;
use std::ptr;
0 commit comments