]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_errors/Cargo.toml
Properly print generator interior type sizes
[rust.git] / compiler / rustc_errors / Cargo.toml
1 [package]
2 name = "rustc_errors"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7
8 [dependencies]
9 tracing = "0.1"
10 rustc_ast = { path = "../rustc_ast" }
11 rustc_ast_pretty = { path = "../rustc_ast_pretty" }
12 rustc_error_messages = { path = "../rustc_error_messages" }
13 rustc_serialize = { path = "../rustc_serialize" }
14 rustc_span = { path = "../rustc_span" }
15 rustc_macros = { path = "../rustc_macros" }
16 rustc_data_structures = { path = "../rustc_data_structures" }
17 rustc_target = { path = "../rustc_target" }
18 rustc_hir = { path = "../rustc_hir" }
19 rustc_lint_defs = { path = "../rustc_lint_defs" }
20 unicode-width = "0.1.4"
21 termcolor = "1.0"
22 annotate-snippets = "0.9"
23 termize = "0.1.1"
24 serde = { version = "1.0.125", features = [ "derive" ] }
25 serde_json = "1.0.59"
26
27 [target.'cfg(windows)'.dependencies]
28 winapi = { version = "0.3", features = [ "handleapi", "synchapi", "winbase" ] }
29
30 [features]
31 rustc_use_parallel_compiler = ['rustc_error_messages/rustc_use_parallel_compiler']