]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_errors/Cargo.toml
Auto merge of #103569 - RalfJung:miri-test-macos, r=Mark-Simulacrum
[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 atty = "0.2"
22 termcolor = "1.0"
23 annotate-snippets = "0.9"
24 termize = "0.1.1"
25 serde = { version = "1.0.125", features = [ "derive" ] }
26 serde_json = "1.0.59"
27
28 [target.'cfg(windows)'.dependencies]
29 winapi = { version = "0.3", features = [ "handleapi", "synchapi", "winbase" ] }