]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_errors/Cargo.toml
Rollup merge of #98868 - tmiasko:unreachable-coverage, 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_hir = { path = "../rustc_hir" }
17 rustc_lint_defs = { path = "../rustc_lint_defs" }
18 unicode-width = "0.1.4"
19 atty = "0.2"
20 termcolor = "1.0"
21 annotate-snippets = "0.8.0"
22 termize = "0.1.1"
23 serde = { version = "1.0.125", features = ["derive"] }
24 serde_json = "1.0.59"
25
26 [target.'cfg(windows)'.dependencies]
27 winapi = { version = "0.3", features = ["handleapi", "synchapi", "winbase"] }