2020-04-01 00:11:26 -05:00
|
|
|
[package]
|
2022-04-29 09:29:24 -05:00
|
|
|
name = "proc-macro-srv"
|
2020-08-12 19:57:26 -05:00
|
|
|
version = "0.0.0"
|
2020-08-24 06:06:30 -05:00
|
|
|
description = "TBD"
|
2023-01-16 09:41:47 -06:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 09:33:01 -06:00
|
|
|
rust-version.workspace = true
|
2020-04-01 00:11:26 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-21 01:48:38 -06:00
|
|
|
object = { version = "0.30.2", default-features = false, features = [
|
2021-07-31 03:25:03 -05:00
|
|
|
"std",
|
|
|
|
"read_core",
|
|
|
|
"elf",
|
|
|
|
"macho",
|
|
|
|
"pe",
|
|
|
|
] }
|
2022-03-22 11:36:41 -05:00
|
|
|
libloading = "0.7.3"
|
2022-06-10 09:30:09 -05:00
|
|
|
memmap2 = "0.5.4"
|
2020-08-13 03:04:37 -05:00
|
|
|
|
2023-01-17 03:52:26 -06:00
|
|
|
tt.workspace = true
|
|
|
|
mbe.workspace = true
|
|
|
|
paths.workspace = true
|
|
|
|
proc-macro-api.workspace = true
|
2020-04-01 00:11:26 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-19 06:00:45 -05:00
|
|
|
expect-test = "1.4.0"
|
2020-08-14 17:19:47 -05:00
|
|
|
|
|
|
|
# used as proc macro test targets
|
2023-01-17 03:52:26 -06:00
|
|
|
proc-macro-test.workspace = true
|
2022-07-20 11:27:58 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
sysroot-abi = []
|