]> git.lizzy.rs Git - rust.git/blob - src/librustc_interface/Cargo.toml
Rollup merge of #60766 - vorner:weak-into-raw, r=sfackler
[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 crate-type = ["dylib"]
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 scoped-tls = "1.0"
17 syntax = { path = "../libsyntax" }
18 syntax_ext = { path = "../libsyntax_ext" }
19 syntax_pos = { path = "../libsyntax_pos" }
20 serialize = { path = "../libserialize" }
21 rustc = { path = "../librustc" }
22 rustc_allocator = { path = "../librustc_allocator" }
23 rustc_borrowck = { path = "../librustc_borrowck" }
24 rustc_incremental = { path = "../librustc_incremental" }
25 rustc_traits = { path = "../librustc_traits" }
26 rustc_data_structures = { path = "../librustc_data_structures" }
27 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
28 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
29 rustc_metadata = { path = "../librustc_metadata" }
30 rustc_mir = { path = "../librustc_mir" }
31 rustc_passes = { path = "../librustc_passes" }
32 rustc_typeck = { path = "../librustc_typeck" }
33 rustc_lint = { path = "../librustc_lint" }
34 rustc_errors = { path = "../librustc_errors" }
35 rustc_plugin = { path = "../librustc_plugin" }
36 rustc_privacy = { path = "../librustc_privacy" }
37 rustc_resolve = { path = "../librustc_resolve" }
38 tempfile = "3.0.5"