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