]> git.lizzy.rs Git - rust.git/blob - crates/hir-def/Cargo.toml
Auto merge of #12253 - Veykril:bm, r=Veykril
[rust.git] / 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 bitflags = "1.3.2"
14 cov-mark = "2.0.0-pre.1"
15 dashmap = { version = "5.2.0", features = ["raw-api"] }
16 lock_api = "0.4.6"
17 parking_lot = "0.12.0"
18 tracing = "0.1.32"
19 once_cell = "1.10.0"
20 rustc-hash = "1.1.0"
21 either = "1.6.1"
22 anymap = "0.12.1"
23 drop_bomb = "0.1.5"
24 fst = { version = "0.4.7", default-features = false }
25 itertools = "0.10.3"
26 indexmap = "1.8.0"
27 smallvec = "1.8.0"
28 arrayvec = "0.7.2"
29 la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
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.2.2"