mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-03-16 17:00:53 +00:00
Merge pull request #38 from shahn/drop_rand_dep
Drop rand from required dependencies
This commit is contained in:
commit
018f59d94f
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user