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"