blob: 5d8ff601e799398a29000dcd4ac3e119bb98ef19 [file] [log] [blame]
mark9e5f7d52020-08-28 03:58:481[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_errors"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8doctest = false
9
10[dependencies]
11tracing = "0.1"
12rustc_serialize = { path = "../rustc_serialize" }
13rustc_span = { path = "../rustc_span" }
14rustc_macros = { path = "../rustc_macros" }
15rustc_data_structures = { path = "../rustc_data_structures" }
Aaron Hill23018a52020-08-13 19:41:5216rustc_lint_defs = { path = "../rustc_lint_defs" }
mark9e5f7d52020-08-28 03:58:4817unicode-width = "0.1.4"
18atty = "0.2"
19termcolor = "1.0"
20annotate-snippets = "0.8.0"
21termize = "0.1.1"
22
23[target.'cfg(windows)'.dependencies]
24winapi = { version = "0.3", features = ["handleapi", "synchapi", "winbase"] }