mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-03 14:34:58 +00:00
`rustc_errors` depends on numerous crates, solely to implement its `IntoDiagArg` trait on types from those crates. Many crates depend on `rustc_errors`, and it's on the critical path. We can't swap things around to make all of those crates depend on `rustc_errors` instead, because `rustc_errors` would end up in dependency cycles. Instead, move `IntoDiagArg` into `rustc_error_messages`, which has far fewer dependencies, and then have most of these crates depend on `rustc_error_messages`. This allows `rustc_errors` to drop dependencies on several crates, including the large `rustc_target`. (This doesn't fully reduce dependency chains yet, as `rustc_errors` still depends on `rustc_hir` which depends on `rustc_target`. That will get fixed in a subsequent commit.)
24 lines
697 B
TOML
24 lines
697 B
TOML
[package]
|
|
name = "rustc_error_messages"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
fluent-bundle = "0.16"
|
|
fluent-syntax = "0.12"
|
|
icu_list = "1.2"
|
|
icu_locid = "1.2"
|
|
icu_provider_adapters = "1.2"
|
|
intl-memoizer = "0.5.1"
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
|
rustc_baked_icu_data = { path = "../rustc_baked_icu_data" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
tracing = "0.1"
|
|
unic-langid = { version = "0.9.0", features = ["macros"] }
|
|
# tidy-alphabetical-end
|