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