diff options
author | Aleksey Kladov <[email protected]> | 2019-02-23 11:07:29 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-02-23 13:55:18 +0000 |
commit | e9cafafbc2108dd91ca687bc8c21bc6a7fe2dfff (patch) | |
tree | ab8bda9fb8add5aa2edf0887b526755efdace88d | |
parent | 60373aa5047b350cd12fb1fa3c03f49b77d2448d (diff) |
add dependency on the parser
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | crates/ra_mbe/Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5912659d4..e697de588 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1066,6 +1066,7 @@ dependencies = [ | |||
1066 | name = "ra_mbe" | 1066 | name = "ra_mbe" |
1067 | version = "0.1.0" | 1067 | version = "0.1.0" |
1068 | dependencies = [ | 1068 | dependencies = [ |
1069 | "ra_parser 0.1.0", | ||
1069 | "ra_syntax 0.1.0", | 1070 | "ra_syntax 0.1.0", |
1070 | "ra_tt 0.1.0", | 1071 | "ra_tt 0.1.0", |
1071 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1072 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
diff --git a/crates/ra_mbe/Cargo.toml b/crates/ra_mbe/Cargo.toml index e7b8660e7..6e785f570 100644 --- a/crates/ra_mbe/Cargo.toml +++ b/crates/ra_mbe/Cargo.toml | |||
@@ -6,6 +6,7 @@ authors = ["rust-analyzer developers"] | |||
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |
8 | ra_syntax = { path = "../ra_syntax" } | 8 | ra_syntax = { path = "../ra_syntax" } |
9 | ra_parser = { path = "../ra_parser" } | ||
9 | tt = { path = "../ra_tt", package = "ra_tt" } | 10 | tt = { path = "../ra_tt", package = "ra_tt" } |
10 | 11 | ||
11 | rustc-hash = "1.0.0" | 12 | rustc-hash = "1.0.0" |