diff options
Diffstat (limited to 'crates/proc_macro_srv')
-rw-r--r-- | crates/proc_macro_srv/Cargo.toml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/crates/proc_macro_srv/Cargo.toml b/crates/proc_macro_srv/Cargo.toml index 775af890e..f7d481cba 100644 --- a/crates/proc_macro_srv/Cargo.toml +++ b/crates/proc_macro_srv/Cargo.toml | |||
@@ -9,12 +9,13 @@ edition = "2018" | |||
9 | doctest = false | 9 | doctest = false |
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | tt = { path = "../tt" } | ||
13 | ra_mbe = { path = "../ra_mbe" } | ||
14 | ra_proc_macro = { path = "../ra_proc_macro" } | ||
15 | goblin = "0.2.1" | 12 | goblin = "0.2.1" |
16 | libloading = "0.6.0" | 13 | libloading = "0.6.0" |
17 | memmap = "0.7" | 14 | memmap = "0.7" |
15 | |||
16 | tt = { path = "../tt" } | ||
17 | ra_mbe = { path = "../ra_mbe" } | ||
18 | ra_proc_macro = { path = "../ra_proc_macro" } | ||
18 | test_utils = { path = "../test_utils" } | 19 | test_utils = { path = "../test_utils" } |
19 | 20 | ||
20 | [dev-dependencies] | 21 | [dev-dependencies] |
@@ -22,4 +23,5 @@ cargo_metadata = "0.11.1" | |||
22 | difference = "2.0.0" | 23 | difference = "2.0.0" |
23 | # used as proc macro test target | 24 | # used as proc macro test target |
24 | serde_derive = "1.0.106" | 25 | serde_derive = "1.0.106" |
26 | |||
25 | toolchain = { path = "../toolchain" } | 27 | toolchain = { path = "../toolchain" } |