]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_errors/Cargo.toml
Rollup merge of #97711 - Nilstrieb:rustc-arena-ub, r=wesleywiser
[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 doctest = false
8
9 [dependencies]
10 tracing = "0.1"
11 rustc_error_messages = { path = "../rustc_error_messages" }
12 rustc_serialize = { path = "../rustc_serialize" }
13 rustc_span = { path = "../rustc_span" }
14 rustc_macros = { path = "../rustc_macros" }
15 rustc_data_structures = { path = "../rustc_data_structures" }
16 rustc_lint_defs = { path = "../rustc_lint_defs" }
17 unicode-width = "0.1.4"
18 atty = "0.2"
19 termcolor = "1.0"
20 annotate-snippets = "0.8.0"
21 termize = "0.1.1"
22 serde = { version = "1.0.125", features = ["derive"] }
23 serde_json = "1.0.59"
24
25 [target.'cfg(windows)'.dependencies]
26 winapi = { version = "0.3", features = ["handleapi", "synchapi", "winbase"] }