From e9cafafbc2108dd91ca687bc8c21bc6a7fe2dfff Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 23 Feb 2019 14:07:29 +0300 Subject: [PATCH] add dependency on the parser --- Cargo.lock | 1 + crates/ra_mbe/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 5912659d427..e697de588d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1066,6 +1066,7 @@ dependencies = [ name = "ra_mbe" version = "0.1.0" dependencies = [ + "ra_parser 0.1.0", "ra_syntax 0.1.0", "ra_tt 0.1.0", "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 e7b8660e755..6e785f570c3 100644 --- a/crates/ra_mbe/Cargo.toml +++ b/crates/ra_mbe/Cargo.toml @@ -6,6 +6,7 @@ authors = ["rust-analyzer developers"] [dependencies] ra_syntax = { path = "../ra_syntax" } +ra_parser = { path = "../ra_parser" } tt = { path = "../ra_tt", package = "ra_tt" } rustc-hash = "1.0.0"