]> git.lizzy.rs Git - rust.git/blob - src/tools/rust-analyzer/crates/proc-macro-srv/Cargo.toml
:arrow_up: rust-analyzer
[rust.git] / src / tools / rust-analyzer / crates / proc-macro-srv / Cargo.toml
1 [package]
2 name = "proc-macro-srv"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 edition = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 object = { version = "0.29.0", default-features = false, features = [
14     "std",
15     "read_core",
16     "elf",
17     "macho",
18     "pe",
19 ] }
20 libloading = "0.7.3"
21 memmap2 = "0.5.4"
22
23 tt = { path = "../tt", version = "0.0.0" }
24 mbe = { path = "../mbe", version = "0.0.0" }
25 paths = { path = "../paths", version = "0.0.0" }
26 proc-macro-api = { path = "../proc-macro-api", version = "0.0.0" }
27
28 [dev-dependencies]
29 expect-test = "1.4.0"
30
31 # used as proc macro test targets
32 proc-macro-test = { path = "../proc-macro-test" }
33
34 [features]
35 sysroot-abi = []