aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_proc_macro_srv/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-04-09 08:38:55 +0100
committerGitHub <[email protected]>2020-04-09 08:38:55 +0100
commitebd1309c9a3ac0e6b0cee197f30a962d5263e727 (patch)
treec427803762cb400420fa8c95ff329fac3425a991 /crates/ra_proc_macro_srv/Cargo.toml
parent080c983498afcac3eb54028af5c9f8bfe7f2c826 (diff)
parent836384393b3cb2dca003f4a2caf47e94f283f48c (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.toml2
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]
12ra_tt = { path = "../ra_tt" } 12ra_tt = { path = "../ra_tt" }
13ra_mbe = { path = "../ra_mbe" }
13ra_proc_macro = { path = "../ra_proc_macro" } 14ra_proc_macro = { path = "../ra_proc_macro" }
14 15
15
16[dev-dependencies] 16[dev-dependencies]
17cargo_metadata = "0.9.1" 17cargo_metadata = "0.9.1"
18difference = "2.0.0" 18difference = "2.0.0"