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