]> git.proxmox.com Git - rustc.git/blob - src/tools/rust-analyzer/crates/hir-def/Cargo.toml
New upstream version 1.69.0+dfsg1
[rustc.git] / src / tools / rust-analyzer / crates / hir-def / Cargo.toml
1 [package]
2 name = "hir-def"
3 version = "0.0.0"
4 description = "TBD"
5
6 authors.workspace = true
7 edition.workspace = true
8 license.workspace = true
9 rust-version.workspace = true
10
11 [lib]
12 doctest = false
13
14 [dependencies]
15 anymap = "1.0.0-beta.2"
16 arrayvec = "0.7.2"
17 bitflags = "1.3.2"
18 cov-mark = "2.0.0-pre.1"
19 # We need to freeze the version of the crate, as the raw-api feature is considered unstable
20 dashmap = { version = "=5.4.0", features = ["raw-api"] }
21 drop_bomb = "0.1.5"
22 either = "1.7.0"
23 fst = { version = "0.4.7", default-features = false }
24 hashbrown = { version = "0.12.1", default-features = false }
25 indexmap = "1.9.1"
26 itertools = "0.10.5"
27 la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
28 once_cell = "1.17.0"
29 rustc-hash = "1.1.0"
30 smallvec.workspace = true
31 tracing = "0.1.35"
32
33 rustc_abi = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_abi", default-features = false }
34 rustc_index = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_index", default-features = false }
35
36 # local deps
37 stdx.workspace = true
38 intern.workspace = true
39 base-db.workspace = true
40 syntax.workspace = true
41 profile.workspace = true
42 hir-expand.workspace = true
43 mbe.workspace = true
44 cfg.workspace = true
45 tt.workspace = true
46 limit.workspace = true
47
48 [dev-dependencies]
49 expect-test = "1.4.0"
50
51 # local deps
52 test-utils.workspace = true