rust-analyzer/crates/ra_proc_macro_srv/Cargo.toml

24 lines
477 B
TOML
Raw Normal View History

2020-04-01 05:11:26 +00: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 08:07:22 +00:00
ra_mbe = { path = "../ra_mbe" }
2020-04-01 05:11:26 +00:00
ra_proc_macro = { path = "../ra_proc_macro" }
2020-04-04 08:09:36 +00:00
goblin = "0.2.1"
libloading = "0.6.0"
2020-04-09 17:43:47 +00:00
test_utils = { path = "../test_utils" }
2020-04-01 05:11:26 +00:00
[dev-dependencies]
cargo_metadata = "0.9.1"
difference = "2.0.0"
2020-04-04 08:00:21 +00:00
# used as proc macro test target
2020-04-04 08:09:36 +00:00
serde_derive = "=1.0.104"