rust/compiler/rustc_parse/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
795 B
TOML
Raw Permalink Normal View History

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]
# tidy-alphabetical-start
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" }
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
rustc_index = { path = "../rustc_index" }
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" }
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"
2024-10-12 21:57:50 +00:00
unicode-width = "0.2.0"
# tidy-alphabetical-end
[dev-dependencies]
termcolor = "1.2"