]> git.proxmox.com Git - rustc.git/blame - src/librustc_driver/Cargo.toml
New upstream version 1.41.1+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]
7453a54e 13graphviz = { path = "../libgraphviz" }
e1599b0c 14lazy_static = "1.0"
2c00a5a8 15log = "0.4"
e74abb32 16env_logger = { version = "0.7", default-features = false }
7453a54e 17rustc = { path = "../librustc" }
83c7162d 18rustc_target = { path = "../librustc_target" }
e74abb32 19rustc_lint = { path = "../librustc_lint" }
c30ab7b3 20rustc_data_structures = { path = "../librustc_data_structures" }
532ac7d7 21errors = { path = "../librustc_errors", package = "rustc_errors" }
60c5eb7d 22rustc_feature = { path = "../librustc_feature" }
c30ab7b3 23rustc_metadata = { path = "../librustc_metadata" }
7453a54e 24rustc_mir = { path = "../librustc_mir" }
60c5eb7d
XL
25rustc_parse = { path = "../librustc_parse" }
26rustc_plugin_impl = { path = "../librustc_plugin_impl" }
54a0048b 27rustc_save_analysis = { path = "../librustc_save_analysis" }
94b46f34 28rustc_codegen_utils = { path = "../librustc_codegen_utils" }
60c5eb7d 29rustc_error_codes = { path = "../librustc_error_codes" }
532ac7d7 30rustc_interface = { path = "../librustc_interface" }
416331ca 31rustc_serialize = { path = "../libserialize", package = "serialize" }
60c5eb7d 32rustc_resolve = { path = "../librustc_resolve" }
7453a54e 33syntax = { path = "../libsyntax" }
9e0c209e 34syntax_pos = { path = "../libsyntax_pos" }
60c5eb7d
XL
35
36[features]
37llvm = ['rustc_interface/llvm']