2016-06-21 22:08:13 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_errors"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2016-06-21 22:08:13 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
|
|
|
annotate-snippets = "0.9"
|
|
|
|
derive_setters = "0.1.6"
|
2022-09-14 17:22:20 +00:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2022-03-24 02:03:04 +00:00
|
|
|
rustc_error_messages = { path = "../rustc_error_messages" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_lint_defs = { path = "../rustc_lint_defs" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-09-01 06:03:47 +00:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
2022-11-17 13:53:14 +00:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
2022-08-26 20:39:59 +00:00
|
|
|
serde = { version = "1.0.125", features = [ "derive" ] }
|
2021-06-03 19:14:15 +00:00
|
|
|
serde_json = "1.0.59"
|
2023-10-20 02:37:29 +00:00
|
|
|
termcolor = "1.2.0"
|
|
|
|
termize = "0.1.1"
|
|
|
|
tracing = "0.1"
|
|
|
|
unicode-width = "0.1.4"
|
|
|
|
# tidy-alphabetical-end
|
2020-01-04 21:46:47 +00:00
|
|
|
|
2023-01-15 18:43:15 +00:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2023-05-09 15:20:13 +00:00
|
|
|
version = "0.48.0"
|
2023-01-15 18:43:15 +00:00
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Security",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
]
|
2022-11-06 17:25:48 +00:00
|
|
|
|
|
|
|
[features]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2022-11-06 17:25:48 +00:00
|
|
|
rustc_use_parallel_compiler = ['rustc_error_messages/rustc_use_parallel_compiler']
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|