mark | 9e5f7d5 | 2020-08-28 03:58:48 | [diff] [blame] | 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" } |
Aaron Hill | 23018a5 | 2020-08-13 19:41:52 | [diff] [blame] | 16 | rustc_lint_defs = { path = "../rustc_lint_defs" } |
mark | 9e5f7d5 | 2020-08-28 03:58:48 | [diff] [blame] | 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"] } |