]> git.lizzy.rs Git - rust.git/blob - src/tools/rust-analyzer/crates/hir-def/Cargo.toml
:arrow_up: rust-analyzer
[rust.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 license = "MIT OR Apache-2.0"
6 edition = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 anymap = "1.0.0-beta.2"
14 arrayvec = "0.7.2"
15 bitflags = "1.3.2"
16 cov-mark = "2.0.0-pre.1"
17 # We need to freeze the version of the crate, as the raw-api feature is considered unstable
18 dashmap = { version = "=5.4.0", features = ["raw-api"] }
19 drop_bomb = "0.1.5"
20 either = "1.7.0"
21 fst = { version = "0.4.7", default-features = false }
22 hashbrown = { version = "0.12.1", default-features = false }
23 indexmap = "1.9.1"
24 itertools = "0.10.5"
25 la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
26 once_cell = "1.15.0"
27 rustc-hash = "1.1.0"
28 smallvec = "1.10.0"
29 tracing = "0.1.35"
30
31 stdx = { path = "../stdx", version = "0.0.0" }
32 base-db = { path = "../base-db", version = "0.0.0" }
33 syntax = { path = "../syntax", version = "0.0.0" }
34 profile = { path = "../profile", version = "0.0.0" }
35 hir-expand = { path = "../hir-expand", version = "0.0.0" }
36 mbe = { path = "../mbe", version = "0.0.0" }
37 cfg = { path = "../cfg", version = "0.0.0" }
38 tt = { path = "../tt", version = "0.0.0" }
39 limit = { path = "../limit", version = "0.0.0" }
40
41 [dev-dependencies]
42 test-utils = { path = "../test-utils" }
43 expect-test = "1.4.0"