about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/crates/load-cargo/Cargo.toml
blob: 91b012e05071f2433a459330a910352fb6e6d130 (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
[package]
name = "load-cargo"
version = "0.0.0"
repository.workspace = true
description = "Loads a Cargo project into a static instance of rust-analyzer for analysis."

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

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow.workspace = true
crossbeam-channel.workspace = true
itertools.workspace = true
tracing.workspace = true

# workspace deps

hir-expand.workspace = true
ide-db.workspace = true
proc-macro-api.workspace = true
project-model.workspace = true
span.workspace = true
tt.workspace = true
vfs-notify.workspace = true
vfs.workspace = true
intern.workspace = true

[features]
in-rust-tree = ["hir-expand/in-rust-tree"]

[lints]
workspace = true