]> git.proxmox.com Git - rustc.git/blob - src/librustc_interface/Cargo.toml
New upstream version 1.47.0+dfsg1
[rustc.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 libc = "0.2"
14 tracing = "0.1"
15 rayon = { version = "0.3.0", package = "rustc-rayon" }
16 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
17 rustc_ast = { path = "../librustc_ast" }
18 rustc_attr = { path = "../librustc_attr" }
19 rustc_builtin_macros = { path = "../librustc_builtin_macros" }
20 rustc_expand = { path = "../librustc_expand" }
21 rustc_parse = { path = "../librustc_parse" }
22 rustc_session = { path = "../librustc_session" }
23 rustc_span = { path = "../librustc_span" }
24 rustc_serialize = { path = "../librustc_serialize" }
25 rustc_middle = { path = "../librustc_middle" }
26 rustc_ast_lowering = { path = "../librustc_ast_lowering" }
27 rustc_ast_passes = { path = "../librustc_ast_passes" }
28 rustc_incremental = { path = "../librustc_incremental" }
29 rustc_traits = { path = "../librustc_traits" }
30 rustc_data_structures = { path = "../librustc_data_structures" }
31 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
32 rustc_symbol_mangling = { path = "../librustc_symbol_mangling" }
33 rustc_codegen_llvm = { path = "../librustc_codegen_llvm", optional = true }
34 rustc_hir = { path = "../librustc_hir" }
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_trait_selection = { path = "../librustc_trait_selection" }
46 rustc_ty = { path = "../librustc_ty" }
47 tempfile = "3.0.5"
48 once_cell = "1"
49
50 [target.'cfg(windows)'.dependencies]
51 winapi = { version = "0.3", features = ["libloaderapi"] }
52
53 [dev-dependencies]
54 rustc_target = { path = "../librustc_target" }
55
56 [features]
57 llvm = ['rustc_codegen_llvm']