]> git.lizzy.rs Git - rust.git/blob - crates/hir_def/Cargo.toml
minor: Bump dependencies
[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.2.0", features = ["raw-api"] }
15 lock_api = "0.4.6"
16 parking_lot = "0.12.0"
17 tracing = "0.1.32"
18 once_cell = "1.10.0"
19 rustc-hash = "1.1.0"
20 either = "1.6.1"
21 anymap = "0.12.1"
22 drop_bomb = "0.1.5"
23 fst = { version = "0.4.7", default-features = false }
24 itertools = "0.10.3"
25 indexmap = "1.8.0"
26 smallvec = "1.8.0"
27 arrayvec = "0.7.2"
28 la-arena = { version = "0.3.0", path = "../../lib/arena" }
29
30 stdx = { path = "../stdx", version = "0.0.0" }
31 base_db = { path = "../base_db", version = "0.0.0" }
32 syntax = { path = "../syntax", version = "0.0.0" }
33 profile = { path = "../profile", version = "0.0.0" }
34 hir_expand = { path = "../hir_expand", version = "0.0.0" }
35 mbe = { path = "../mbe", version = "0.0.0" }
36 cfg = { path = "../cfg", version = "0.0.0" }
37 tt = { path = "../tt", version = "0.0.0" }
38 limit = { path = "../limit", version = "0.0.0" }
39
40 [dev-dependencies]
41 test_utils = { path = "../test_utils" }
42 expect-test = "1.2.2"