]> git.lizzy.rs Git - rust.git/blob - crates/hir_def/Cargo.toml
Replaced fold with for loop
[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 cov-mark = "2.0.0-pre.1"
14 dashmap = { version = "5.0", features = ["raw-api"] }
15 lock_api = "0.4"
16 parking_lot = "0.12"
17 tracing = "0.1"
18 once_cell = "1.3.1"
19 rustc-hash = "1.1.0"
20 either = "1.5.3"
21 anymap = "0.12.1"
22 drop_bomb = "0.1.4"
23 fst = { version = "0.4", default-features = false }
24 itertools = "0.10.0"
25 indexmap = "1.7.0"
26 smallvec = "1.4.0"
27 la-arena = { version = "0.3.0", path = "../../lib/arena" }
28
29 stdx = { path = "../stdx", version = "0.0.0" }
30 base_db = { path = "../base_db", version = "0.0.0" }
31 syntax = { path = "../syntax", version = "0.0.0" }
32 profile = { path = "../profile", version = "0.0.0" }
33 hir_expand = { path = "../hir_expand", version = "0.0.0" }
34 mbe = { path = "../mbe", version = "0.0.0" }
35 cfg = { path = "../cfg", version = "0.0.0" }
36 tt = { path = "../tt", version = "0.0.0" }
37 limit = { path = "../limit", version = "0.0.0" }
38
39 [dev-dependencies]
40 test_utils = { path = "../test_utils" }
41 expect-test = "1.2.0-pre.1"