summaryrefslogtreecommitdiffstats
path: root/src/tools/rust-analyzer/crates/proc-macro-srv/Cargo.toml
blob: 99993f16e2767e671c24272d64e0c0285726032a (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
38
[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.32.0", default-features = false, features = [
    "std",
    "read_core",
    "elf",
    "macho",
    "pe",
] }
libloading = "0.8.0"
memmap2 = "0.5.4"

stdx.workspace = true
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 = []