2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_parse"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-08-28 03:58:48 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2023-12-30 16:09:02 +00:00
|
|
|
bitflags = "2.4.1"
|
2022-09-08 07:22:52 +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-09-08 07:22:52 +00:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_lexer = { path = "../rustc_lexer" }
|
2022-04-25 20:55:15 +00:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-12-05 23:19:32 +00:00
|
|
|
thin-vec = "0.2.12"
|
2022-09-08 07:22:52 +00:00
|
|
|
tracing = "0.1"
|
2020-08-28 03:58:48 +00:00
|
|
|
unicode-normalization = "0.1.11"
|
2021-08-19 18:40:00 +00:00
|
|
|
unicode-width = "0.1.4"
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|