2020-04-01 05:11:26 +00:00
|
|
|
[package]
|
2020-08-13 00:57:26 +00:00
|
|
|
name = "proc_macro_srv"
|
|
|
|
version = "0.0.0"
|
2020-08-24 11:06:30 +00:00
|
|
|
description = "TBD"
|
2020-07-14 01:57:26 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-13 00:57:26 +00:00
|
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
edition = "2018"
|
2020-04-01 05:11:26 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2020-12-23 08:40:12 +00:00
|
|
|
object = { version = "0.23", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
|
2021-02-11 15:07:49 +00:00
|
|
|
libloading = "0.7.0"
|
2021-02-02 15:25:17 +00:00
|
|
|
memmap2 = "0.2.0"
|
2020-08-13 08:04:37 +00:00
|
|
|
|
2020-08-24 08:25:19 +00:00
|
|
|
tt = { path = "../tt", version = "0.0.0" }
|
|
|
|
mbe = { path = "../mbe", version = "0.0.0" }
|
|
|
|
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
|
2020-04-01 05:11:26 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-09 19:30:58 +00:00
|
|
|
test_utils = { path = "../test_utils" }
|
2021-03-02 12:27:29 +00:00
|
|
|
cargo_metadata = "0.13"
|
2020-08-14 22:19:47 +00:00
|
|
|
|
|
|
|
# used as proc macro test targets
|
2020-05-09 22:22:26 +00:00
|
|
|
serde_derive = "1.0.106"
|
2020-08-14 22:19:47 +00:00
|
|
|
proc_macro_test = { path = "../proc_macro_test" }
|
2020-08-13 08:04:37 +00:00
|
|
|
|
2020-08-12 14:52:28 +00:00
|
|
|
toolchain = { path = "../toolchain" }
|