Skip to content

Commit

Permalink
deps: remove rand dependency
Browse files Browse the repository at this point in the history
Fixes #27
  • Loading branch information
BurntSushi committed Mar 11, 2018
1 parent c3a2ebb commit 16fd30f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ csv = "1.0.0-beta.5"
docopt = "0.8"
memmap = "0.6"
quickcheck = { version = "0.6", default-features = false }
rand = "0.4"
serde = "1"
serde_derive = "1"

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ assert_eq!(matches, vec![Match { pati: 1, start: 0, end: 1}]);
#![deny(missing_docs)]

extern crate memchr;
#[cfg(test)] extern crate quickcheck;
#[cfg(test)] extern crate rand;
#[cfg(test)]
extern crate quickcheck;

use std::collections::VecDeque;
use std::fmt;
Expand Down

0 comments on commit 16fd30f

Please sign in to comment.