Skip to content

Commit 98e3941

Browse files
committed
Fix travis errors.
1 parent 2fe812c commit 98e3941

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

luacompiler/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ name = "luacompiler"
1313
path = "src/lib/mod.rs"
1414

1515
[dependencies]
16-
cfgrammar = { git="https://github.com/softdevteam/grmtools" }
17-
lrlex = { git="https://github.com/softdevteam/grmtools" }
18-
lrpar = { git="https://github.com/softdevteam/grmtools" }
19-
lrtable = { git="https://github.com/softdevteam/grmtools" }
16+
cfgrammar = "0.1"
17+
lrlex = "0.1"
18+
lrpar = "0.1"
2019
bincode = "1.0.1"
2120
serde = "1.0.80"
2221
serde_derive = "1.0"
@@ -26,5 +25,6 @@ version = "2.32"
2625
default-features = false
2726

2827
[build-dependencies]
29-
lrpar = { git="https://github.com/softdevteam/grmtools" }
30-
lrlex = { git="https://github.com/softdevteam/grmtools" }
28+
cfgrammar = "0.1"
29+
lrlex = "0.1"
30+
lrpar = "0.1"

luacompiler/src/lib/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ extern crate cfgrammar;
33
extern crate lrlex;
44
#[macro_use]
55
extern crate lrpar;
6-
extern crate lrtable;
76
#[macro_use]
87
extern crate serde_derive;
98
extern crate bincode;

0 commit comments

Comments
 (0)