mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
1b416473a3
cf. https://github.com/rust-analyzer/expect-test/issues/33 cf. https://github.com/rust-lang/rust/pull/99444#issuecomment-1188844202
32 lines
687 B
TOML
32 lines
687 B
TOML
[package]
|
|
name = "proc-macro-srv"
|
|
version = "0.0.0"
|
|
description = "TBD"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
object = { version = "0.29.0", default-features = false, features = [
|
|
"std",
|
|
"read_core",
|
|
"elf",
|
|
"macho",
|
|
"pe",
|
|
] }
|
|
libloading = "0.7.3"
|
|
memmap2 = "0.5.4"
|
|
|
|
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.4.0"
|
|
|
|
# used as proc macro test targets
|
|
proc-macro-test = { path = "../proc-macro-test" }
|