diff options
author | Aleksey Kladov <[email protected]> | 2020-08-13 09:04:37 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-08-13 09:36:04 +0100 |
commit | 0e6b94de78bb5b356d6fd14a6db91ceb8d76856d (patch) | |
tree | 6c8b218e186dc130ef29864f57622a7a0ebac689 /crates | |
parent | e30be7ad15272746e761a29cb1829defecd231cc (diff) |
Minor
Diffstat (limited to 'crates')
-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" } |