]> git.proxmox.com Git - rustc.git/blame - src/tools/rust-analyzer/crates/hir-ty/Cargo.toml
New upstream version 1.64.0+dfsg1
[rustc.git] / src / tools / rust-analyzer / crates / hir-ty / Cargo.toml
CommitLineData
064997fb
FG
1[package]
2name = "hir-ty"
3version = "0.0.0"
4description = "TBD"
5license = "MIT OR Apache-2.0"
6edition = "2021"
7rust-version = "1.57"
8
9[lib]
10doctest = false
11
12[dependencies]
13cov-mark = "2.0.0-pre.1"
14itertools = "0.10.3"
15arrayvec = "0.7.2"
16smallvec = "1.9.0"
17ena = "0.14.0"
18tracing = "0.1.35"
19rustc-hash = "1.1.0"
20scoped-tls = "1.0.0"
21chalk-solve = { version = "0.83.0", default-features = false }
22chalk-ir = "0.83.0"
23chalk-recursive = { version = "0.83.0", default-features = false }
24la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
25once_cell = "1.12.0"
26typed-arena = "2.0.1"
27
28stdx = { path = "../stdx", version = "0.0.0" }
29hir-def = { path = "../hir-def", version = "0.0.0" }
30hir-expand = { path = "../hir-expand", version = "0.0.0" }
31base-db = { path = "../base-db", version = "0.0.0" }
32profile = { path = "../profile", version = "0.0.0" }
33syntax = { path = "../syntax", version = "0.0.0" }
34limit = { path = "../limit", version = "0.0.0" }
35
36[dev-dependencies]
37test-utils = { path = "../test-utils" }
38expect-test = "1.4.0"
39tracing = "0.1.35"
40tracing-subscriber = { version = "0.3.14", default-features = false, features = [
41 "env-filter",
42 "registry",
43] }
44tracing-tree = "0.2.1"