2020-04-01 00:11:26 -05:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
|
|
|
name = "ra_proc_macro_srv"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ra_tt = { path = "../ra_tt" }
|
2020-04-04 03:07:22 -05:00
|
|
|
ra_mbe = { path = "../ra_mbe" }
|
2020-04-01 00:11:26 -05:00
|
|
|
ra_proc_macro = { path = "../ra_proc_macro" }
|
2020-04-04 03:09:36 -05:00
|
|
|
goblin = "0.2.1"
|
|
|
|
libloading = "0.6.0"
|
2020-04-17 02:47:15 -05:00
|
|
|
memmap = "0.7"
|
2020-04-09 12:43:47 -05:00
|
|
|
test_utils = { path = "../test_utils" }
|
2020-04-01 00:11:26 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-05-09 17:22:26 -05:00
|
|
|
cargo_metadata = "0.10.0"
|
2020-04-01 00:11:26 -05:00
|
|
|
difference = "2.0.0"
|
2020-04-04 03:00:21 -05:00
|
|
|
# used as proc macro test target
|
2020-05-09 17:22:26 -05:00
|
|
|
serde_derive = "1.0.106"
|
2020-05-23 08:31:56 -05:00
|
|
|
ra_toolchain = { path = "../ra_toolchain" }
|