]> git.lizzy.rs Git - rust.git/blob - crates/ra_hir_def/Cargo.toml
Replace `ra_hir_expand::either` with crate
[rust.git] / crates / ra_hir_def / Cargo.toml
1 [package]
2 edition = "2018"
3 name = "ra_hir_def"
4 version = "0.1.0"
5 authors = ["rust-analyzer developers"]
6
7 [lib]
8 doctest = false
9
10 [dependencies]
11 log = "0.4.5"
12 once_cell = "1.0.1"
13 rustc-hash = "1.0"
14 either = "1.5"
15
16 ra_arena = { path = "../ra_arena" }
17 ra_db = { path = "../ra_db" }
18 ra_syntax = { path = "../ra_syntax" }
19 ra_prof = { path = "../ra_prof" }
20 hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
21 test_utils = { path = "../test_utils" }
22 mbe = { path = "../ra_mbe", package = "ra_mbe" }
23 ra_cfg = { path = "../ra_cfg" }
24 tt = { path = "../ra_tt", package = "ra_tt" }
25
26 [dev-dependencies]
27 insta = "0.12.0"