]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_errors/Cargo.toml
Delete Decoder::read_enum
[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_serialize = { path = "../rustc_serialize" }
12 rustc_span = { path = "../rustc_span" }
13 rustc_macros = { path = "../rustc_macros" }
14 rustc_data_structures = { path = "../rustc_data_structures" }
15 rustc_lint_defs = { path = "../rustc_lint_defs" }
16 unicode-width = "0.1.4"
17 atty = "0.2"
18 termcolor = "1.0"
19 annotate-snippets = "0.8.0"
20 termize = "0.1.1"
21
22 [target.'cfg(windows)'.dependencies]
23 winapi = { version = "0.3", features = ["handleapi", "synchapi", "winbase"] }