diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-04-09 08:38:55 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-09 08:38:55 +0100 |
commit | ebd1309c9a3ac0e6b0cee197f30a962d5263e727 (patch) | |
tree | c427803762cb400420fa8c95ff329fac3425a991 /crates/ra_proc_macro_srv/Cargo.toml | |
parent | 080c983498afcac3eb54028af5c9f8bfe7f2c826 (diff) | |
parent | 836384393b3cb2dca003f4a2caf47e94f283f48c (diff) |
Merge #3906
3906: Implement proc_macro rustc server r=matklad a=edwin0cheng
This PR implement the `ra_tt::TokenTree` based rustc server for lib_proc_macro.
Note that span information is not implemented yet.
Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/ra_proc_macro_srv/Cargo.toml')
-rw-r--r-- | crates/ra_proc_macro_srv/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_proc_macro_srv/Cargo.toml b/crates/ra_proc_macro_srv/Cargo.toml index 6300d668a..f08de5fc7 100644 --- a/crates/ra_proc_macro_srv/Cargo.toml +++ b/crates/ra_proc_macro_srv/Cargo.toml | |||
@@ -10,9 +10,9 @@ doctest = false | |||
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | ra_tt = { path = "../ra_tt" } | 12 | ra_tt = { path = "../ra_tt" } |
13 | ra_mbe = { path = "../ra_mbe" } | ||
13 | ra_proc_macro = { path = "../ra_proc_macro" } | 14 | ra_proc_macro = { path = "../ra_proc_macro" } |
14 | 15 | ||
15 | |||
16 | [dev-dependencies] | 16 | [dev-dependencies] |
17 | cargo_metadata = "0.9.1" | 17 | cargo_metadata = "0.9.1" |
18 | difference = "2.0.0" | 18 | difference = "2.0.0" |