Skip to content

Commit

Permalink
deps: update quickcheck and rand
Browse files Browse the repository at this point in the history
Fixes #127
  • Loading branch information
BurntSushi committed Jan 19, 2019
1 parent 803136c commit ce4489f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ name = "byteorder"
bench = false

[dev-dependencies]
quickcheck = { version = "0.7", default-features = false }
rand = "0.5"
quickcheck = { version = "0.8", default-features = false }
rand = "0.6"

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2306,7 +2306,7 @@ mod test {
extern crate rand;

use self::quickcheck::{QuickCheck, StdGen, Testable};
use self::rand::{Rng, thread_rng};
use self::rand::thread_rng;
#[cfg(feature = "i128")] use self::quickcheck::{Arbitrary, Gen};

pub const U24_MAX: u32 = 16_777_215;
Expand Down

0 comments on commit ce4489f

Please sign in to comment.