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