Cargo.toml 1.6 KB
Newer Older
1 2 3 4
[package]
authors = ["The Rust Project Developers"]
name = "rustc_driver"
version = "0.0.0"
T
Taiki Endo 已提交
5
edition = "2018"
6 7 8 9 10 11 12

[lib]
name = "rustc_driver"
path = "lib.rs"
crate-type = ["dylib"]

[dependencies]
13
lazy_static = "1.0"
L
Luca Barbieri 已提交
14
libc = "0.2"
O
Oliver Scherer 已提交
15
log = { package = "tracing", version = "0.1.18", features = ["release_max_level_info"]  }
16
tracing-subscriber = { version = "0.2.10", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
M
Mazdak Farrokhzad 已提交
17
rustc_middle = { path = "../librustc_middle" }
18
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
19
rustc_target = { path = "../librustc_target" }
20
rustc_lint = { path = "../librustc_lint" }
21
rustc_data_structures = { path = "../librustc_data_structures" }
22
rustc_errors = { path = "../librustc_errors" }
23
rustc_feature = { path = "../librustc_feature" }
24
rustc_hir = { path = "../librustc_hir" }
25
rustc_hir_pretty = { path = "../librustc_hir_pretty" }
26
rustc_metadata = { path = "../librustc_metadata" }
27
rustc_mir = { path = "../librustc_mir" }
28
rustc_parse = { path = "../librustc_parse" }
29
rustc_plugin_impl = { path = "../librustc_plugin_impl" }
30
rustc_save_analysis = { path = "../librustc_save_analysis" }
V
Victor Ding 已提交
31
rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
32
rustc_session = { path = "../librustc_session" }
33
rustc_error_codes = { path = "../librustc_error_codes" }
34
rustc_interface = { path = "../librustc_interface" }
V
Vadim Petrochenkov 已提交
35
rustc_serialize = { path = "../librustc_serialize" }
36
rustc_ast = { path = "../librustc_ast" }
37
rustc_span = { path = "../librustc_span" }
38

39 40 41
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }

42 43
[features]
llvm = ['rustc_interface/llvm']