]> git.lizzy.rs Git - rust.git/blob - crates/hir_def/Cargo.toml
Merge #8325
[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 authors = ["rust-analyzer developers"]
7 edition = "2018"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = { version = "1.1", features = ["thread-local"] }
14 dashmap = { version = "4.0.2", features = ["raw-api"] }
15 log = "0.4.8"
16 once_cell = "1.3.1"
17 rustc-hash = "1.1.0"
18 either = "1.5.3"
19 anymap = "0.12.1"
20 drop_bomb = "0.1.4"
21 fst = { version = "0.4", default-features = false }
22 itertools = "0.10.0"
23 indexmap = "1.4.0"
24 smallvec = "1.4.0"
25 la-arena = { version = "0.2.0", path = "../../lib/arena" }
26
27 stdx = { path = "../stdx", version = "0.0.0" }
28 base_db = { path = "../base_db", version = "0.0.0" }
29 syntax = { path = "../syntax", version = "0.0.0" }
30 profile = { path = "../profile", version = "0.0.0" }
31 hir_expand = { path = "../hir_expand", version = "0.0.0" }
32 mbe = { path = "../mbe", version = "0.0.0" }
33 cfg = { path = "../cfg", version = "0.0.0" }
34 tt = { path = "../tt", version = "0.0.0" }
35
36 [dev-dependencies]
37 test_utils = { path = "../test_utils" }
38 expect-test = "1.1"