diff options
Diffstat (limited to 'crates/ra_proc_macro_srv/Cargo.toml')
-rw-r--r-- | crates/ra_proc_macro_srv/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/ra_proc_macro_srv/Cargo.toml b/crates/ra_proc_macro_srv/Cargo.toml new file mode 100644 index 000000000..6300d668a --- /dev/null +++ b/crates/ra_proc_macro_srv/Cargo.toml | |||
@@ -0,0 +1,20 @@ | |||
1 | [package] | ||
2 | edition = "2018" | ||
3 | name = "ra_proc_macro_srv" | ||
4 | version = "0.1.0" | ||
5 | authors = ["rust-analyzer developers"] | ||
6 | publish = false | ||
7 | |||
8 | [lib] | ||
9 | doctest = false | ||
10 | |||
11 | [dependencies] | ||
12 | ra_tt = { path = "../ra_tt" } | ||
13 | ra_proc_macro = { path = "../ra_proc_macro" } | ||
14 | |||
15 | |||
16 | [dev-dependencies] | ||
17 | cargo_metadata = "0.9.1" | ||
18 | difference = "2.0.0" | ||
19 | # used as proc macro test target | ||
20 | serde_derive = "=1.0.104" \ No newline at end of file | ||