rust/crates/proc_macro_srv/Cargo.toml

28 lines
531 B
TOML
Raw Normal View History

2020-04-01 07:11:26 +02:00
[package]
name = "proc_macro_srv"
version = "0.0.0"
2020-07-14 03:57:26 +02:00
license = "MIT OR Apache-2.0"
authors = ["rust-analyzer developers"]
edition = "2018"
2020-04-01 07:11:26 +02:00
[lib]
doctest = false
[dependencies]
2020-04-04 10:09:36 +02:00
goblin = "0.2.1"
libloading = "0.6.0"
2020-04-17 09:47:15 +02:00
memmap = "0.7"
2020-08-13 10:04:37 +02:00
tt = { path = "../tt" }
2020-08-13 10:08:11 +02:00
mbe = { path = "../mbe" }
2020-08-13 10:04:37 +02:00
ra_proc_macro = { path = "../ra_proc_macro" }
2020-04-09 19:43:47 +02:00
test_utils = { path = "../test_utils" }
2020-04-01 07:11:26 +02:00
[dev-dependencies]
2020-07-29 23:06:56 +02:00
cargo_metadata = "0.11.1"
2020-04-01 07:11:26 +02:00
difference = "2.0.0"
2020-04-04 10:00:21 +02:00
# used as proc macro test target
2020-05-10 00:22:26 +02:00
serde_derive = "1.0.106"
2020-08-13 10:04:37 +02:00
2020-08-12 16:52:28 +02:00
toolchain = { path = "../toolchain" }