2018-12-08 20:30:23 +01:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_interface"
|
|
|
|
version = "0.0.0"
|
2019-03-26 19:07:13 +01:00
|
|
|
edition = "2018"
|
2018-12-08 20:30:23 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_interface"
|
|
|
|
path = "lib.rs"
|
2018-12-19 18:11:31 +01:00
|
|
|
doctest = false
|
2018-12-08 20:30:23 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4"
|
2019-09-10 10:13:07 -07:00
|
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
2019-11-04 15:59:09 +01:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2020-02-29 20:37:32 +03:00
|
|
|
rustc_ast = { path = "../librustc_ast" }
|
2020-01-11 13:15:20 +01:00
|
|
|
rustc_attr = { path = "../librustc_attr" }
|
2019-12-29 17:23:55 +03:00
|
|
|
rustc_builtin_macros = { path = "../librustc_builtin_macros" }
|
|
|
|
rustc_expand = { path = "../librustc_expand" }
|
2019-10-15 22:48:13 +02:00
|
|
|
rustc_parse = { path = "../librustc_parse" }
|
2020-01-05 09:40:16 +01:00
|
|
|
rustc_session = { path = "../librustc_session" }
|
2019-12-31 20:15:40 +03:00
|
|
|
rustc_span = { path = "../librustc_span" }
|
2019-07-23 18:50:47 +03:00
|
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
2018-12-08 20:30:23 +01:00
|
|
|
rustc = { path = "../librustc" }
|
2019-12-22 18:12:56 +01:00
|
|
|
rustc_ast_lowering = { path = "../librustc_ast_lowering" }
|
2020-01-05 10:58:44 +01:00
|
|
|
rustc_ast_passes = { path = "../librustc_ast_passes" }
|
2018-12-08 20:30:23 +01:00
|
|
|
rustc_incremental = { path = "../librustc_incremental" }
|
|
|
|
rustc_traits = { path = "../librustc_traits" }
|
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2019-04-30 15:53:30 +10:00
|
|
|
rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
|
2018-12-08 20:30:23 +01:00
|
|
|
rustc_codegen_utils = { path = "../librustc_codegen_utils" }
|
2019-10-22 08:51:35 -07:00
|
|
|
rustc_codegen_llvm = { path = "../librustc_codegen_llvm", optional = true }
|
2019-12-25 03:51:27 +01:00
|
|
|
rustc_hir = { path = "../librustc_hir" }
|
2020-01-06 23:31:06 +01:00
|
|
|
rustc_infer = { path = "../librustc_infer" }
|
2018-12-08 20:30:23 +01:00
|
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
|
|
rustc_mir = { path = "../librustc_mir" }
|
2020-01-05 15:46:44 +00:00
|
|
|
rustc_mir_build = { path = "../librustc_mir_build" }
|
2018-12-08 20:30:23 +01:00
|
|
|
rustc_passes = { path = "../librustc_passes" }
|
|
|
|
rustc_typeck = { path = "../librustc_typeck" }
|
|
|
|
rustc_lint = { path = "../librustc_lint" }
|
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2019-11-17 00:54:24 +03:00
|
|
|
rustc_plugin_impl = { path = "../librustc_plugin_impl" }
|
2018-12-08 20:30:23 +01:00
|
|
|
rustc_privacy = { path = "../librustc_privacy" }
|
|
|
|
rustc_resolve = { path = "../librustc_resolve" }
|
2020-01-13 13:40:30 +01:00
|
|
|
rustc_ty = { path = "../librustc_ty" }
|
2019-04-30 15:53:30 +10:00
|
|
|
tempfile = "3.0.5"
|
2019-09-09 21:01:41 -04:00
|
|
|
once_cell = "1"
|
2019-10-28 03:46:22 +01:00
|
|
|
|
2020-01-04 16:46:47 -05:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["libloaderapi"] }
|
|
|
|
|
2019-10-28 03:46:22 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
rustc_target = { path = "../librustc_target" }
|
2019-10-22 08:51:35 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
llvm = ['rustc_codegen_llvm']
|