2022-03-24 02:03:04 +00:00
|
|
|
[package]
|
|
|
|
|
name = "rustc_error_messages"
|
|
|
|
|
version = "0.0.0"
|
2025-02-20 18:37:58 +00:00
|
|
|
edition = "2024"
|
2022-03-24 02:03:04 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-start
|
2025-05-27 14:11:14 +03:00
|
|
|
fluent-bundle = "0.16"
|
|
|
|
|
fluent-syntax = "0.12"
|
2025-08-28 09:09:15 +00:00
|
|
|
icu_list = { version = "2.0", default-features = false, features = ["alloc"] }
|
|
|
|
|
icu_locale = { version = "2.0", default-features = false }
|
2022-04-03 05:32:38 +01:00
|
|
|
intl-memoizer = "0.5.1"
|
2025-08-14 00:28:44 -07:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2022-11-06 14:43:25 +08:00
|
|
|
rustc_baked_icu_data = { path = "../rustc_baked_icu_data" }
|
2022-03-26 07:27:43 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2022-03-24 02:03:04 +00:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2025-09-02 19:09:13 +10:00
|
|
|
tracing = "0.1"
|
2022-03-26 07:27:43 +00:00
|
|
|
unic-langid = { version = "0.9.0", features = ["macros"] }
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-end
|