]> git.lizzy.rs Git - rust.git/blob - src/librustc_interface/Cargo.toml
Auto merge of #68943 - ecstatic-morse:no-useless-drop-on-enum-variants, r=matthewjasper
[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 rustc_ast = { path = "../librustc_ast" }
17 rustc_attr = { path = "../librustc_attr" }
18 rustc_builtin_macros = { path = "../librustc_builtin_macros" }
19 rustc_expand = { path = "../librustc_expand" }
20 rustc_parse = { path = "../librustc_parse" }
21 rustc_session = { path = "../librustc_session" }
22 rustc_span = { path = "../librustc_span" }
23 rustc_serialize = { path = "../libserialize", package = "serialize" }
24 rustc = { path = "../librustc" }
25 rustc_ast_lowering = { path = "../librustc_ast_lowering" }
26 rustc_ast_passes = { path = "../librustc_ast_passes" }
27 rustc_incremental = { path = "../librustc_incremental" }
28 rustc_traits = { path = "../librustc_traits" }
29 rustc_data_structures = { path = "../librustc_data_structures" }
30 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
31 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
32 rustc_codegen_llvm = { path = "../librustc_codegen_llvm", optional = true }
33 rustc_hir = { path = "../librustc_hir" }
34 rustc_infer = { path = "../librustc_infer" }
35 rustc_metadata = { path = "../librustc_metadata" }
36 rustc_mir = { path = "../librustc_mir" }
37 rustc_mir_build = { path = "../librustc_mir_build" }
38 rustc_passes = { path = "../librustc_passes" }
39 rustc_typeck = { path = "../librustc_typeck" }
40 rustc_lint = { path = "../librustc_lint" }
41 rustc_errors = { path = "../librustc_errors" }
42 rustc_plugin_impl = { path = "../librustc_plugin_impl" }
43 rustc_privacy = { path = "../librustc_privacy" }
44 rustc_resolve = { path = "../librustc_resolve" }
45 rustc_ty = { path = "../librustc_ty" }
46 tempfile = "3.0.5"
47 once_cell = "1"
48
49 [target.'cfg(windows)'.dependencies]
50 winapi = { version = "0.3", features = ["libloaderapi"] }
51
52 [dev-dependencies]
53 rustc_target = { path = "../librustc_target" }
54
55 [features]
56 llvm = ['rustc_codegen_llvm']