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