diff options
Diffstat (limited to 'crates/proc_macro_srv/Cargo.toml')
-rw-r--r-- | crates/proc_macro_srv/Cargo.toml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/crates/proc_macro_srv/Cargo.toml b/crates/proc_macro_srv/Cargo.toml new file mode 100644 index 000000000..a468b5560 --- /dev/null +++ b/crates/proc_macro_srv/Cargo.toml | |||
@@ -0,0 +1,29 @@ | |||
1 | [package] | ||
2 | name = "proc_macro_srv" | ||
3 | version = "0.0.0" | ||
4 | license = "MIT OR Apache-2.0" | ||
5 | authors = ["rust-analyzer developers"] | ||
6 | edition = "2018" | ||
7 | |||
8 | [lib] | ||
9 | doctest = false | ||
10 | |||
11 | [dependencies] | ||
12 | goblin = "0.2.1" | ||
13 | libloading = "0.6.0" | ||
14 | memmap = "0.7" | ||
15 | |||
16 | tt = { path = "../tt" } | ||
17 | mbe = { path = "../mbe" } | ||
18 | proc_macro_api = { path = "../proc_macro_api" } | ||
19 | test_utils = { path = "../test_utils" } | ||
20 | |||
21 | [dev-dependencies] | ||
22 | cargo_metadata = "0.11.1" | ||
23 | difference = "2.0.0" | ||
24 | |||
25 | # used as proc macro test targets | ||
26 | serde_derive = "1.0.106" | ||
27 | proc_macro_test = { path = "../proc_macro_test" } | ||
28 | |||
29 | toolchain = { path = "../toolchain" } | ||