]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_errors/Cargo.toml
New upstream version 1.70.0+dfsg1
[rustc.git] / compiler / rustc_errors / Cargo.toml
CommitLineData
3157f602 1[package]
3157f602
XL
2name = "rustc_errors"
3version = "0.0.0"
c295e0f8 4edition = "2021"
3157f602
XL
5
6[lib]
3157f602
XL
7
8[dependencies]
3dfed10e 9tracing = "0.1"
2b03887a
FG
10rustc_ast = { path = "../rustc_ast" }
11rustc_ast_pretty = { path = "../rustc_ast_pretty" }
04454e1e 12rustc_error_messages = { path = "../rustc_error_messages" }
1b1a35ee
XL
13rustc_serialize = { path = "../rustc_serialize" }
14rustc_span = { path = "../rustc_span" }
15rustc_macros = { path = "../rustc_macros" }
16rustc_data_structures = { path = "../rustc_data_structures" }
f2b60f7d 17rustc_target = { path = "../rustc_target" }
064997fb 18rustc_hir = { path = "../rustc_hir" }
29967ef6 19rustc_lint_defs = { path = "../rustc_lint_defs" }
9c376795 20rustc_type_ir = { path = "../rustc_type_ir" }
ff7c6d11 21unicode-width = "0.1.4"
b7449926 22termcolor = "1.0"
f2b60f7d 23annotate-snippets = "0.9"
74b04a01 24termize = "0.1.1"
f2b60f7d 25serde = { version = "1.0.125", features = [ "derive" ] }
923072b8 26serde_json = "1.0.59"
dfeec247 27
353b0b11
FG
28[target.'cfg(windows)'.dependencies.windows]
29version = "0.46.0"
30features = [
31 "Win32_Foundation",
32 "Win32_Security",
33 "Win32_System_Threading",
34 "Win32_System_WindowsProgramming",
35]
487cf647
FG
36
37[features]
38rustc_use_parallel_compiler = ['rustc_error_messages/rustc_use_parallel_compiler']