2020-04-01 05:11:26 +00:00
|
|
|
[package]
|
2022-04-29 14:29:24 +00:00
|
|
|
name = "proc-macro-srv"
|
2020-08-13 00:57:26 +00:00
|
|
|
version = "0.0.0"
|
2024-08-05 22:23:22 +00:00
|
|
|
repository.workspace = true
|
2024-07-30 12:10:08 +00:00
|
|
|
description = "Proc-macro server for rust-analyzer."
|
2023-02-13 11:55:14 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-04-01 05:11:26 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-05 11:00:21 +00:00
|
|
|
object.workspace = true
|
2024-06-30 13:05:35 +00:00
|
|
|
libloading.workspace = true
|
|
|
|
memmap2.workspace = true
|
2020-08-13 08:04:37 +00:00
|
|
|
|
2023-02-13 11:55:14 +00:00
|
|
|
stdx.workspace = true
|
|
|
|
tt.workspace = true
|
2024-08-05 08:43:01 +00:00
|
|
|
syntax-bridge.workspace = true
|
2023-02-13 11:55:14 +00:00
|
|
|
paths.workspace = true
|
|
|
|
base-db.workspace = true
|
|
|
|
span.workspace = true
|
|
|
|
proc-macro-api.workspace = true
|
2024-07-16 07:59:39 +00:00
|
|
|
intern.workspace = true
|
2020-04-01 05:11:26 +00:00
|
|
|
|
2024-08-05 08:43:01 +00:00
|
|
|
ra-ap-rustc_lexer.workspace = true
|
|
|
|
|
2020-04-01 05:11:26 +00:00
|
|
|
[dev-dependencies]
|
2024-08-05 08:43:01 +00:00
|
|
|
expect-test.workspace = true
|
2020-08-14 22:19:47 +00:00
|
|
|
|
|
|
|
# used as proc macro test targets
|
2023-02-13 11:55:14 +00:00
|
|
|
proc-macro-test.path = "./proc-macro-test"
|
2022-07-20 16:27:58 +00:00
|
|
|
|
|
|
|
[features]
|
2024-01-05 14:18:02 +00:00
|
|
|
sysroot-abi = []
|
2024-08-05 08:43:01 +00:00
|
|
|
in-rust-tree = ["syntax-bridge/in-rust-tree", "tt/in-rust-tree", "sysroot-abi"]
|
2024-01-03 09:35:07 +00:00
|
|
|
|
|
|
|
[lints]
|
2024-01-04 10:02:20 +00:00
|
|
|
workspace = true
|