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]
|
2024-03-05 12:00:21 +01:00
|
|
|
object.workspace = true
|
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
|
2024-01-03 11:35:07 +02:00
|
|
|
base-db.workspace = true
|
|
|
|
span.workspace = true
|
2023-02-13 13:55:14 +02:00
|
|
|
proc-macro-api.workspace = true
|
2024-02-13 12:33:51 +01:00
|
|
|
ra-ap-rustc_lexer.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
|
2024-01-03 11:35:07 +02:00
|
|
|
proc-macro-test.path = "./proc-macro-test"
|
2022-07-20 18:27:58 +02:00
|
|
|
|
|
|
|
[features]
|
2024-01-05 15:18:02 +01:00
|
|
|
sysroot-abi = []
|
2024-01-01 14:37:33 +01:00
|
|
|
in-rust-tree = ["mbe/in-rust-tree", "sysroot-abi"]
|
2024-01-03 11:35:07 +02:00
|
|
|
|
|
|
|
[lints]
|
2024-01-04 11:02:20 +01:00
|
|
|
workspace = true
|