]> git.lizzy.rs Git - rust.git/blob - crates/proc_macro_srv/Cargo.toml
4c1b3036ae98644c0b25fa34766f2038b2eaa117
[rust.git] / crates / proc_macro_srv / Cargo.toml
1 [package]
2 name = "proc_macro_srv"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 authors = ["rust-analyzer developers"]
7 edition = "2018"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 object = { version = "0.23", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
14 libloading = "0.7.0"
15 memmap2 = "0.2.0"
16
17 tt = { path = "../tt", version = "0.0.0" }
18 mbe = { path = "../mbe", version = "0.0.0" }
19 proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
20 test_utils = { path = "../test_utils", version = "0.0.0" }
21
22 [dev-dependencies]
23 cargo_metadata = "0.13"
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" }