Skip to content

Commit

Permalink
Fix deprecation warning in benches/generators.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Jul 16, 2018
1 parent 1a98577 commit d625b18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benches/generators.rs
Expand Up @@ -11,10 +11,11 @@ use std::mem::size_of;
use test::{black_box, Bencher};

use rand::prelude::*;
use rand::prng::{XorShiftRng, Hc128Rng, IsaacRng, Isaac64Rng, ChaChaRng};
use rand::prng::{XorShiftRng, Hc128Rng, ChaChaRng};
use rand::prng::hc128::Hc128Core;
use rand::rngs::adapter::ReseedingRng;
use rand::rngs::{OsRng, JitterRng, EntropyRng};
use rand_isaac::{IsaacRng, Isaac64Rng};

macro_rules! gen_bytes {
($fnn:ident, $gen:expr) => {
Expand Down

0 comments on commit d625b18

Please sign in to comment.