]> git.proxmox.com Git - rustc.git/blame - src/tools/rust-analyzer/crates/hir-ty/Cargo.toml
New upstream version 1.68.2+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"
487cf647 7rust-version = "1.65"
064997fb
FG
8
9[lib]
10doctest = false
11
12[dependencies]
13cov-mark = "2.0.0-pre.1"
2b03887a 14itertools = "0.10.5"
064997fb 15arrayvec = "0.7.2"
f25598a0 16bitflags = "1.3.2"
2b03887a 17smallvec = "1.10.0"
064997fb
FG
18ena = "0.14.0"
19tracing = "0.1.35"
20rustc-hash = "1.1.0"
21scoped-tls = "1.0.0"
f25598a0
FG
22chalk-solve = { version = "0.88.0", default-features = false }
23chalk-ir = "0.88.0"
24chalk-recursive = { version = "0.88.0", default-features = false }
25chalk-derive = "0.88.0"
064997fb 26la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
2b03887a 27once_cell = "1.15.0"
064997fb 28typed-arena = "2.0.1"
f25598a0 29rustc_index = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_index", default-features = false }
064997fb
FG
30
31stdx = { path = "../stdx", version = "0.0.0" }
32hir-def = { path = "../hir-def", version = "0.0.0" }
33hir-expand = { path = "../hir-expand", version = "0.0.0" }
34base-db = { path = "../base-db", version = "0.0.0" }
35profile = { path = "../profile", version = "0.0.0" }
36syntax = { path = "../syntax", version = "0.0.0" }
37limit = { path = "../limit", version = "0.0.0" }
38
39[dev-dependencies]
40test-utils = { path = "../test-utils" }
41expect-test = "1.4.0"
42tracing = "0.1.35"
2b03887a 43tracing-subscriber = { version = "0.3.16", default-features = false, features = [
064997fb
FG
44 "env-filter",
45 "registry",
46] }
47tracing-tree = "0.2.1"