2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
2022-09-26 13:00:29 +02:00
|
|
|
name = "rustc_hir_analysis"
|
2020-08-27 22:58:48 -05:00
|
|
|
version = "0.0.0"
|
2021-09-19 12:49:55 -04:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rustc_arena = { path = "../rustc_arena" }
|
|
|
|
tracing = "0.1"
|
2020-08-27 20:09:22 +10:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2021-11-17 17:53:47 -08:00
|
|
|
rustc_graphviz = { path = "../rustc_graphviz" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_session = { path = "../rustc_session" }
|
2022-06-27 08:48:55 +10:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
|
|
|
rustc_infer = { path = "../rustc_infer" }
|
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
2021-08-30 21:19:24 +02:00
|
|
|
rustc_lint = { path = "../rustc_lint" }
|
2021-11-10 17:32:04 -08:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2022-05-22 12:57:46 -07:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
2022-06-20 16:07:14 +04:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|