summaryrefslogtreecommitdiffstats
path: root/src/tools/rust-analyzer/crates/proc-macro-srv/Cargo.toml
blob: f7f07cfcb2e27c9c7256f7b34434372f9761a304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "proc-macro-srv"
version = "0.0.0"
description = "TBD"

authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true

[lib]
doctest = false

[dependencies]
object = { version = "0.30.2", default-features = false, features = [
    "std",
    "read_core",
    "elf",
    "macho",
    "pe",
] }
libloading = "0.7.3"
memmap2 = "0.5.4"

tt.workspace = true
mbe.workspace = true
paths.workspace = true
proc-macro-api.workspace = true

[dev-dependencies]
expect-test = "1.4.0"

# used as proc macro test targets
proc-macro-test.workspace = true

[features]
sysroot-abi = []