add dependency on the parser

This commit is contained in:
Aleksey Kladov 2019-02-23 14:07:29 +03:00
parent 60373aa504
commit e9cafafbc2
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View file

@ -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)",

View file

@ -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"