2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_ast_lowering"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-08-28 03:58:48 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-17 04:22:30 +00:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2022-08-17 04:22:30 +00:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2021-07-05 20:26:23 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2022-08-16 20:28:51 +00:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2022-08-17 04:22:30 +00:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
2022-06-26 22:48:55 +00:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2022-12-05 23:19:32 +00:00
|
|
|
thin-vec = "0.2.12"
|
2022-08-17 04:22:30 +00:00
|
|
|
tracing = "0.1"
|