]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_errors/Cargo.toml
Rollup merge of #82364 - osa1:issue82361, r=estebank
[rust.git] / compiler / rustc_errors / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_errors"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 doctest = false
9
10 [dependencies]
11 tracing = "0.1"
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
23 [target.'cfg(windows)'.dependencies]
24 winapi = { version = "0.3", features = ["handleapi", "synchapi", "winbase"] }