rust/compiler/rustc_resolve/Cargo.toml

31 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2020-08-27 22:58:48 -05:00
[package]
name = "rustc_resolve"
version = "0.0.0"
2021-09-19 11:49:55 -05:00
edition = "2021"
2020-08-27 22:58:48 -05:00
[dependencies]
# tidy-alphabetical-start
bitflags = "2.4.1"
2024-06-29 11:34:52 -05:00
pulldown-cmark = { version = "0.11", features = ["html"], default-features = false }
2020-08-27 22:58:48 -05:00
rustc_arena = { path = "../rustc_arena" }
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_attr = { path = "../rustc_attr" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_errors = { path = "../rustc_errors" }
rustc_expand = { path = "../rustc_expand" }
rustc_feature = { path = "../rustc_feature" }
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
2020-08-27 22:58:48 -05:00
rustc_hir = { path = "../rustc_hir" }
rustc_index = { path = "../rustc_index" }
rustc_macros = { path = "../rustc_macros" }
2020-08-27 22:58:48 -05:00
rustc_metadata = { path = "../rustc_metadata" }
2022-09-08 02:22:52 -05:00
rustc_middle = { path = "../rustc_middle" }
rustc_query_system = { path = "../rustc_query_system" }
2020-08-27 22:58:48 -05:00
rustc_session = { path = "../rustc_session" }
rustc_span = { path = "../rustc_span" }
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
thin-vec = "0.2.12"
2022-09-08 02:22:52 -05:00
tracing = "0.1"
# tidy-alphabetical-end