]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_interface/Cargo.toml
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / compiler / rustc_interface / Cargo.toml
CommitLineData
1b1a35ee
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_interface"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8doctest = false
9
10[dependencies]
11libc = "0.2"
12tracing = "0.1"
6a06907d
XL
13rustc-rayon-core = "0.3.1"
14rayon = { version = "0.3.1", package = "rustc-rayon" }
15smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1b1a35ee
XL
16rustc_ast = { path = "../rustc_ast" }
17rustc_attr = { path = "../rustc_attr" }
18rustc_builtin_macros = { path = "../rustc_builtin_macros" }
19rustc_expand = { path = "../rustc_expand" }
20rustc_parse = { path = "../rustc_parse" }
21rustc_session = { path = "../rustc_session" }
22rustc_span = { path = "../rustc_span" }
23rustc_serialize = { path = "../rustc_serialize" }
24rustc_middle = { path = "../rustc_middle" }
25rustc_ast_lowering = { path = "../rustc_ast_lowering" }
26rustc_ast_passes = { path = "../rustc_ast_passes" }
27rustc_incremental = { path = "../rustc_incremental" }
28rustc_traits = { path = "../rustc_traits" }
29rustc_data_structures = { path = "../rustc_data_structures" }
30rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
31rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
32rustc_codegen_llvm = { path = "../rustc_codegen_llvm", optional = true }
33rustc_hir = { path = "../rustc_hir" }
6a06907d 34rustc_index = { path = "../rustc_index" }
1b1a35ee
XL
35rustc_metadata = { path = "../rustc_metadata" }
36rustc_mir = { path = "../rustc_mir" }
37rustc_mir_build = { path = "../rustc_mir_build" }
38rustc_passes = { path = "../rustc_passes" }
39rustc_typeck = { path = "../rustc_typeck" }
40rustc_lint = { path = "../rustc_lint" }
41rustc_errors = { path = "../rustc_errors" }
42rustc_plugin_impl = { path = "../rustc_plugin_impl" }
43rustc_privacy = { path = "../rustc_privacy" }
6a06907d 44rustc_query_impl = { path = "../rustc_query_impl" }
1b1a35ee
XL
45rustc_resolve = { path = "../rustc_resolve" }
46rustc_trait_selection = { path = "../rustc_trait_selection" }
fc512014 47rustc_ty_utils = { path = "../rustc_ty_utils" }
1b1a35ee
XL
48tempfile = "3.0.5"
49
50[target.'cfg(windows)'.dependencies]
51winapi = { version = "0.3", features = ["libloaderapi"] }
52
53[dev-dependencies]
54rustc_target = { path = "../rustc_target" }
55
56[features]
57llvm = ['rustc_codegen_llvm']