rust-analyzer/crates/proc_macro_srv/Cargo.toml

33 lines
687 B
TOML
Raw Normal View History

2020-04-01 05:11:26 +00:00
[package]
name = "proc_macro_srv"
version = "0.0.0"
description = "TBD"
2020-07-14 01:57:26 +00:00
license = "MIT OR Apache-2.0"
2021-10-21 15:49:28 +00:00
edition = "2021"
2021-12-15 20:49:48 +00:00
rust-version = "1.57"
2020-04-01 05:11:26 +00:00
[lib]
doctest = false
[dependencies]
2022-03-22 16:36:41 +00:00
object = { version = "0.28.3", default-features = false, features = [
2021-07-31 08:25:03 +00:00
"std",
"read_core",
"elf",
"macho",
"pe",
] }
2022-03-22 16:36:41 +00:00
libloading = "0.7.3"
memmap2 = "0.5.3"
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" }
paths = { path = "../paths", version = "0.0.0" }
2020-08-24 08:25:19 +00:00
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
2020-04-01 05:11:26 +00:00
[dev-dependencies]
2022-03-22 16:36:41 +00:00
expect-test = "1.2.2"
# used as proc macro test targets
proc_macro_test = { path = "../proc_macro_test" }