]> git.lizzy.rs Git - rust.git/blob - crates/hir_ty/Cargo.toml
Add const generics
[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 = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "2.0.0-pre.1"
14 itertools = "0.10.0"
15 arrayvec = "0.7"
16 smallvec = "1.2.0"
17 ena = "0.14.0"
18 tracing = "0.1"
19 rustc-hash = "1.1.0"
20 scoped-tls = "1"
21 chalk-solve = { version = "0.79", default-features = false }
22 chalk-ir = "0.79"
23 chalk-recursive = { version = "0.79", default-features = false }
24 la-arena = { version = "0.3.0", path = "../../lib/arena" }
25 once_cell = { version = "1.5.0" }
26 typed-arena = "2.0.1"
27
28 stdx = { path = "../stdx", version = "0.0.0" }
29 hir_def = { path = "../hir_def", version = "0.0.0" }
30 hir_expand = { path = "../hir_expand", version = "0.0.0" }
31 base_db = { path = "../base_db", version = "0.0.0" }
32 profile = { path = "../profile", version = "0.0.0" }
33 syntax = { path = "../syntax", 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.2.0-pre.1"
39 tracing = "0.1"
40 tracing-subscriber = { version = "0.3", default-features = false, features = [
41     "env-filter",
42     "registry",
43 ] }
44 tracing-tree = "0.2"