]> git.lizzy.rs Git - rust.git/blob - src/librustc_interface/Cargo.toml
resolve: Remove an incorrect assert
[rust.git] / src / librustc_interface / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_interface"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_interface"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 log = "0.4"
14 rayon = { version = "0.2.0", package = "rustc-rayon" }
15 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
16 syntax = { path = "../libsyntax" }
17 syntax_ext = { path = "../libsyntax_ext" }
18 syntax_pos = { path = "../libsyntax_pos" }
19 rustc_serialize = { path = "../libserialize", package = "serialize" }
20 rustc = { path = "../librustc" }
21 rustc_incremental = { path = "../librustc_incremental" }
22 rustc_traits = { path = "../librustc_traits" }
23 rustc_data_structures = { path = "../librustc_data_structures" }
24 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
25 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
26 rustc_metadata = { path = "../librustc_metadata" }
27 rustc_mir = { path = "../librustc_mir" }
28 rustc_passes = { path = "../librustc_passes" }
29 rustc_typeck = { path = "../librustc_typeck" }
30 rustc_lint = { path = "../librustc_lint" }
31 rustc_errors = { path = "../librustc_errors" }
32 rustc_plugin = { path = "../librustc_plugin", package = "rustc_plugin_impl" }
33 rustc_privacy = { path = "../librustc_privacy" }
34 rustc_resolve = { path = "../librustc_resolve" }
35 tempfile = "3.0.5"
36 once_cell = "1"