2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_parse"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2023-12-30 10:09:02 -06:00
|
|
|
bitflags = "2.4.1"
|
2022-09-08 02:22:52 -05:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2022-09-08 02:22:52 -05:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 07:33:00 -05:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2024-08-20 23:16:42 -05:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_lexer = { path = "../rustc_lexer" }
|
2022-04-25 15:55:15 -05:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-12-05 17:19:32 -06:00
|
|
|
thin-vec = "0.2.12"
|
2022-09-08 02:22:52 -05:00
|
|
|
tracing = "0.1"
|
2020-08-27 22:58:48 -05:00
|
|
|
unicode-normalization = "0.1.11"
|
2024-10-12 16:57:50 -05:00
|
|
|
unicode-width = "0.2.0"
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|
2024-05-02 18:26:34 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
termcolor = "1.2"
|
|
|
|
|