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