rust-analyzer/crates/proc_macro_srv/Cargo.toml
2021-09-11 16:26:36 +01:00

31 lines
663 B
TOML

[package]
name = "proc_macro_srv"
version = "0.0.0"
description = "TBD"
license = "MIT OR Apache-2.0"
edition = "2018"
[lib]
doctest = false
[dependencies]
object = { version = "0.26", default-features = false, features = [
"std",
"read_core",
"elf",
"macho",
"pe",
] }
libloading = "0.7.0"
memmap2 = "0.3.0"
tt = { path = "../tt", version = "0.0.0" }
mbe = { path = "../mbe", version = "0.0.0" }
paths = { path = "../paths", version = "0.0.0" }
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
[dev-dependencies]
expect-test = "1.1.0"
# used as proc macro test targets
proc_macro_test = { path = "../proc_macro_test" }