]> git.proxmox.com Git - rustc.git/blame - src/librustc_interface/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_interface / Cargo.toml
CommitLineData
532ac7d7
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_interface"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8name = "rustc_interface"
9path = "lib.rs"
416331ca 10doctest = false
532ac7d7
XL
11
12[dependencies]
ba9703b0 13libc = "0.2"
532ac7d7 14log = "0.4"
e74abb32 15rayon = { version = "0.3.0", package = "rustc-rayon" }
60c5eb7d 16smallvec = { version = "1.0", features = ["union", "may_dangle"] }
74b04a01
XL
17rustc_ast = { path = "../librustc_ast" }
18rustc_attr = { path = "../librustc_attr" }
dfeec247
XL
19rustc_builtin_macros = { path = "../librustc_builtin_macros" }
20rustc_expand = { path = "../librustc_expand" }
60c5eb7d 21rustc_parse = { path = "../librustc_parse" }
dfeec247
XL
22rustc_session = { path = "../librustc_session" }
23rustc_span = { path = "../librustc_span" }
416331ca 24rustc_serialize = { path = "../libserialize", package = "serialize" }
ba9703b0 25rustc_middle = { path = "../librustc_middle" }
dfeec247
XL
26rustc_ast_lowering = { path = "../librustc_ast_lowering" }
27rustc_ast_passes = { path = "../librustc_ast_passes" }
532ac7d7
XL
28rustc_incremental = { path = "../librustc_incremental" }
29rustc_traits = { path = "../librustc_traits" }
30rustc_data_structures = { path = "../librustc_data_structures" }
48663c56 31rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
ba9703b0 32rustc_symbol_mangling = { path = "../librustc_symbol_mangling" }
60c5eb7d 33rustc_codegen_llvm = { path = "../librustc_codegen_llvm", optional = true }
dfeec247 34rustc_hir = { path = "../librustc_hir" }
74b04a01 35rustc_infer = { path = "../librustc_infer" }
532ac7d7
XL
36rustc_metadata = { path = "../librustc_metadata" }
37rustc_mir = { path = "../librustc_mir" }
dfeec247 38rustc_mir_build = { path = "../librustc_mir_build" }
532ac7d7
XL
39rustc_passes = { path = "../librustc_passes" }
40rustc_typeck = { path = "../librustc_typeck" }
41rustc_lint = { path = "../librustc_lint" }
42rustc_errors = { path = "../librustc_errors" }
60c5eb7d 43rustc_plugin_impl = { path = "../librustc_plugin_impl" }
532ac7d7
XL
44rustc_privacy = { path = "../librustc_privacy" }
45rustc_resolve = { path = "../librustc_resolve" }
ba9703b0 46rustc_trait_selection = { path = "../librustc_trait_selection" }
dfeec247 47rustc_ty = { path = "../librustc_ty" }
48663c56 48tempfile = "3.0.5"
e1599b0c 49once_cell = "1"
60c5eb7d 50
dfeec247
XL
51[target.'cfg(windows)'.dependencies]
52winapi = { version = "0.3", features = ["libloaderapi"] }
53
60c5eb7d
XL
54[dev-dependencies]
55rustc_target = { path = "../librustc_target" }
56
57[features]
58llvm = ['rustc_codegen_llvm']