35 lines
765 B
TOML
Raw Normal View History

2020-04-01 13:11:26 +08:00
[package]
name = "proc_macro_srv"
version = "0.0.0"
description = "TBD"
2020-07-14 10:57:26 +09:00
license = "MIT OR Apache-2.0"
edition = "2018"
2020-04-01 13:11:26 +08:00
[lib]
doctest = false
[dependencies]
2021-07-31 11:25:03 +03:00
object = { version = "0.26", default-features = false, features = [
"std",
"read_core",
"elf",
"macho",
"pe",
] }
libloading = "0.7.0"
2021-06-22 13:18:48 -04:00
memmap2 = "0.3.0"
2020-08-13 10:04:37 +02:00
2020-08-24 10:25:19 +02: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 10:25:19 +02:00
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
2020-04-01 13:11:26 +08:00
[dev-dependencies]
2021-03-09 22:30:58 +03:00
test_utils = { path = "../test_utils" }
2021-05-31 17:32:56 +02:00
toolchain = { path = "../toolchain" }
cargo_metadata = "0.14"
2021-05-31 17:32:56 +02:00
expect-test = "1.1.0"
# used as proc macro test targets
proc_macro_test = { path = "../proc_macro_test" }