]> git.lizzy.rs Git - rust.git/blob - src/librustc_interface/Cargo.toml
rustc_span: return an impl Iterator instead of a Vec from macro_backtrace.
[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.3.0", package = "rustc-rayon" }
15 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
16 syntax = { path = "../libsyntax" }
17 rustc_builtin_macros = { path = "../librustc_builtin_macros" }
18 rustc_expand = { path = "../librustc_expand" }
19 rustc_parse = { path = "../librustc_parse" }
20 rustc_session = { path = "../librustc_session" }
21 rustc_span = { path = "../librustc_span" }
22 rustc_serialize = { path = "../libserialize", package = "serialize" }
23 rustc = { path = "../librustc" }
24 rustc_ast_lowering = { path = "../librustc_ast_lowering" }
25 rustc_ast_passes = { path = "../librustc_ast_passes" }
26 rustc_incremental = { path = "../librustc_incremental" }
27 rustc_traits = { path = "../librustc_traits" }
28 rustc_data_structures = { path = "../librustc_data_structures" }
29 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
30 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
31 rustc_codegen_llvm = { path = "../librustc_codegen_llvm", optional = true }
32 rustc_hir = { path = "../librustc_hir" }
33 rustc_metadata = { path = "../librustc_metadata" }
34 rustc_mir = { path = "../librustc_mir" }
35 rustc_mir_build = { path = "../librustc_mir_build" }
36 rustc_passes = { path = "../librustc_passes" }
37 rustc_typeck = { path = "../librustc_typeck" }
38 rustc_lint = { path = "../librustc_lint" }
39 rustc_errors = { path = "../librustc_errors" }
40 rustc_plugin_impl = { path = "../librustc_plugin_impl" }
41 rustc_privacy = { path = "../librustc_privacy" }
42 rustc_resolve = { path = "../librustc_resolve" }
43 rustc_ty = { path = "../librustc_ty" }
44 tempfile = "3.0.5"
45 once_cell = "1"
46
47 [target.'cfg(windows)'.dependencies]
48 winapi = { version = "0.3", features = ["libloaderapi"] }
49
50 [dev-dependencies]
51 rustc_target = { path = "../librustc_target" }
52
53 [features]
54 llvm = ['rustc_codegen_llvm']