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-02-13 13:55:14 +02:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-04-01 13:11:26 +08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-14 22:57:38 +08:00
|
|
|
object = { version = "0.32.0", default-features = false, features = [
|
2021-07-31 11:25:03 +03:00
|
|
|
"std",
|
|
|
|
"read_core",
|
|
|
|
"elf",
|
|
|
|
"macho",
|
|
|
|
"pe",
|
|
|
|
] }
|
2023-07-17 16:49:15 +03:00
|
|
|
libloading = "0.8.0"
|
2022-06-10 16:30:09 +02:00
|
|
|
memmap2 = "0.5.4"
|
2020-08-13 10:04:37 +02:00
|
|
|
|
2023-06-05 12:04:23 +03:00
|
|
|
stdx.workspace = true
|
2023-02-13 13:55:14 +02:00
|
|
|
tt.workspace = true
|
|
|
|
mbe.workspace = true
|
|
|
|
paths.workspace = true
|
2023-12-11 12:16:12 +01:00
|
|
|
base-db.workspace = true
|
|
|
|
span.workspace = true
|
2023-02-13 13:55:14 +02:00
|
|
|
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-12-15 14:27:45 +01:00
|
|
|
proc-macro-test.path = "./proc-macro-test"
|
2022-07-20 18:27:58 +02:00
|
|
|
|
|
|
|
[features]
|
2023-12-15 15:57:27 +01:00
|
|
|
sysroot-abi = ["proc-macro-test/sysroot-abi"]
|
2023-12-29 23:22:29 +09:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|