This commit is contained in:
Aleksey Kladov 2020-08-13 10:04:37 +02:00
parent e30be7ad15
commit 0e6b94de78
2 changed files with 23 additions and 21 deletions

36
Cargo.lock generated
View file

@ -901,6 +901,23 @@ dependencies = [
"unicode-xid",
]
[[package]]
name = "proc_macro_srv"
version = "0.0.0"
dependencies = [
"cargo_metadata",
"difference",
"goblin",
"libloading",
"memmap",
"ra_mbe",
"ra_proc_macro",
"serde_derive",
"test_utils",
"toolchain",
"tt",
]
[[package]]
name = "profile"
version = "0.0.0"
@ -1132,23 +1149,6 @@ dependencies = [
"tt",
]
[[package]]
name = "proc_macro_srv"
version = "0.0.0"
dependencies = [
"cargo_metadata",
"difference",
"goblin",
"libloading",
"memmap",
"ra_mbe",
"ra_proc_macro",
"serde_derive",
"test_utils",
"toolchain",
"tt",
]
[[package]]
name = "ra_project_model"
version = "0.1.0"
@ -1271,6 +1271,7 @@ dependencies = [
"oorandom",
"parking_lot",
"pico-args",
"proc_macro_srv",
"profile",
"ra_cfg",
"ra_db",
@ -1280,7 +1281,6 @@ dependencies = [
"ra_ide",
"ra_ide_db",
"ra_mbe",
"proc_macro_srv",
"ra_project_model",
"ra_ssr",
"rayon",

View file

@ -9,12 +9,13 @@ edition = "2018"
doctest = false
[dependencies]
tt = { path = "../tt" }
ra_mbe = { path = "../ra_mbe" }
ra_proc_macro = { path = "../ra_proc_macro" }
goblin = "0.2.1"
libloading = "0.6.0"
memmap = "0.7"
tt = { path = "../tt" }
ra_mbe = { path = "../ra_mbe" }
ra_proc_macro = { path = "../ra_proc_macro" }
test_utils = { path = "../test_utils" }
[dev-dependencies]
@ -22,4 +23,5 @@ cargo_metadata = "0.11.1"
difference = "2.0.0"
# used as proc macro test target
serde_derive = "1.0.106"
toolchain = { path = "../toolchain" }