]> git.proxmox.com Git - rustc.git/blame - src/librustc_driver/Cargo.toml
New upstream version 1.43.0+dfsg1
[rustc.git] / src / librustc_driver / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_driver"
4version = "0.0.0"
532ac7d7 5edition = "2018"
7453a54e
SL
6
7[lib]
8name = "rustc_driver"
9path = "lib.rs"
10crate-type = ["dylib"]
11
12[dependencies]
e1599b0c 13lazy_static = "1.0"
2c00a5a8 14log = "0.4"
e74abb32 15env_logger = { version = "0.7", default-features = false }
7453a54e 16rustc = { path = "../librustc" }
74b04a01 17rustc_ast_pretty = { path = "../librustc_ast_pretty" }
83c7162d 18rustc_target = { path = "../librustc_target" }
e74abb32 19rustc_lint = { path = "../librustc_lint" }
c30ab7b3 20rustc_data_structures = { path = "../librustc_data_structures" }
dfeec247 21rustc_errors = { path = "../librustc_errors" }
60c5eb7d 22rustc_feature = { path = "../librustc_feature" }
dfeec247 23rustc_hir = { path = "../librustc_hir" }
c30ab7b3 24rustc_metadata = { path = "../librustc_metadata" }
7453a54e 25rustc_mir = { path = "../librustc_mir" }
60c5eb7d
XL
26rustc_parse = { path = "../librustc_parse" }
27rustc_plugin_impl = { path = "../librustc_plugin_impl" }
54a0048b 28rustc_save_analysis = { path = "../librustc_save_analysis" }
74b04a01 29rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
94b46f34 30rustc_codegen_utils = { path = "../librustc_codegen_utils" }
60c5eb7d 31rustc_error_codes = { path = "../librustc_error_codes" }
532ac7d7 32rustc_interface = { path = "../librustc_interface" }
416331ca 33rustc_serialize = { path = "../libserialize", package = "serialize" }
74b04a01 34rustc_ast = { path = "../librustc_ast" }
dfeec247
XL
35rustc_span = { path = "../librustc_span" }
36
37[target.'cfg(windows)'.dependencies]
38winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
60c5eb7d
XL
39
40[features]
41llvm = ['rustc_interface/llvm']