Merge pull request #38 from shahn/drop_rand_dep

Drop rand from required dependencies
This commit is contained in:
Niko Matsakis 2015-10-30 06:20:37 -04:00
commit 018f59d94f
2 changed files with 6 additions and 2 deletions

View File

@ -15,12 +15,14 @@ doctest = false
[dependencies]
regex = "0.1"
diff = "0.1"
rand = "0.3"
itertools = "0.3"
term = "0.2"
unicode-xid = "0.0.2"
petgraph = "0.1.11"
[dev-dependencies]
rand = "0.3"
[dependencies.lalrpop-util]
path = "../lalrpop-util"
version = "0.8.0" # LALRPOP

View File

@ -12,12 +12,14 @@ extern crate diff;
extern crate lalrpop_intern as intern;
extern crate lalrpop_util;
extern crate petgraph;
extern crate rand;
extern crate regex;
extern crate term;
extern crate itertools;
extern crate unicode_xid;
#[cfg(test)]
extern crate rand;
// rust exports a macro that others use, so hoist it early.
#[macro_use]
mod rust;