]> git.lizzy.rs Git - rust.git/blob - crates/hir_ty/Cargo.toml
switch `log` crate to `tracing`
[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 edition = "2018"
7
8 [lib]
9 doctest = false
10
11 [dependencies]
12 cov-mark = "2.0.0-pre.1"
13 itertools = "0.10.0"
14 arrayvec = "0.7"
15 smallvec = "1.2.0"
16 ena = "0.14.0"
17 tracing = "0.1"
18 rustc-hash = "1.1.0"
19 scoped-tls = "1"
20 chalk-solve = { version = "0.70", default-features = false }
21 chalk-ir = "0.70"
22 chalk-recursive = { version = "0.70", default-features = false }
23 la-arena = { version = "0.2.0", path = "../../lib/arena" }
24 once_cell = { version = "1.5.0" }
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 limit = { path = "../limit", version = "0.0.0" }
33
34 [dev-dependencies]
35 test_utils = { path = "../test_utils" }
36 expect-test = "1.1"
37 tracing = "0.1"
38 tracing-subscriber = { version = "0.2", default-features = false, features = [
39     "env-filter",
40     "registry",
41 ] }
42 tracing-tree = { version = "0.1.4" }
43 once_cell = { version = "1.5.0", features = ["unstable"] }