33 lines
689 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"
2021-10-21 17:49:28 +02:00
edition = "2021"
2021-12-16 01:49:48 +05:00
rust-version = "1.57"
2020-04-01 13:11:26 +08:00
[lib]
doctest = false
[dependencies]
2021-12-19 19:00:42 +02:00
object = { version = "0.28", default-features = false, features = [
2021-07-31 11:25:03 +03:00
"std",
"read_core",
"elf",
"macho",
"pe",
] }
libloading = "0.7.0"
2021-10-01 18:55:52 +03:00
memmap2 = "0.5"
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-10-09 17:17:16 +03:00
expect-test = "1.2.0-pre.1"
# used as proc macro test targets
proc_macro_test = { path = "../proc_macro_test" }