]> git.lizzy.rs Git - rust.git/blob - crates/hir_ty/Cargo.toml
Merge #7777
[rust.git] / crates / hir_ty / Cargo.toml
1 [package]
2 name = "hir_ty"
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 itertools = "0.10.0"
14 arrayvec = "0.5.1"
15 smallvec = "1.2.0"
16 ena = "0.14.0"
17 log = "0.4.8"
18 rustc-hash = "1.1.0"
19 scoped-tls = "1"
20 chalk-solve = { version = "0.59", default-features = false }
21 chalk-ir = "0.59"
22 chalk-recursive = "0.59"
23 la-arena = { version = "0.2.0", path = "../../lib/arena" }
24
25 stdx = { path = "../stdx", version = "0.0.0" }
26 hir_def = { path = "../hir_def", version = "0.0.0" }
27 hir_expand = { path = "../hir_expand", version = "0.0.0" }
28 base_db = { path = "../base_db", version = "0.0.0" }
29 profile = { path = "../profile", version = "0.0.0" }
30 syntax = { path = "../syntax", version = "0.0.0" }
31 test_utils = { path = "../test_utils", version = "0.0.0" }
32
33 [dev-dependencies]
34 expect-test = "1.1"
35 tracing = "0.1"
36 tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] }
37 tracing-tree = { version = "0.1.4" }
38 once_cell = { version = "1.5.0", features = ["unstable"] }