2016-06-21 18:08:13 -04:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_errors"
|
|
|
|
version = "0.0.0"
|
2019-02-07 03:53:01 +09:00
|
|
|
edition = "2018"
|
2016-06-21 18:08:13 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_errors"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2018-09-06 13:07:14 +02:00
|
|
|
log = "0.4"
|
2017-01-28 18:13:21 -05:00
|
|
|
serialize = { path = "../libserialize" }
|
2016-10-21 13:18:09 -07:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2017-10-25 15:01:06 +02:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2018-08-04 16:24:39 -06:00
|
|
|
rustc_cratesio_shim = { path = "../librustc_cratesio_shim" }
|
2017-12-10 23:35:53 -08:00
|
|
|
unicode-width = "0.1.4"
|
2018-02-27 10:33:02 -08:00
|
|
|
atty = "0.2"
|
2018-08-04 16:24:39 -06:00
|
|
|
termcolor = "1.0"
|
2019-05-31 22:01:27 +02:00
|
|
|
annotate-snippets = "0.5.0"
|