Cargo.toml 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
[package]
authors = ["The Rust Project Developers"]
name = "rustc_driver"
version = "0.0.0"

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

[dependencies]
arena = { path = "../libarena" }
graphviz = { path = "../libgraphviz" }
14
log = "0.4"
A
Alex Crichton 已提交
15
env_logger = { version = "0.5", default-features = false }
16
rustc-rayon = "0.1.2"
M
Marcel Hellwig 已提交
17
scoped-tls = "1.0"
18
rustc = { path = "../librustc" }
19
rustc_allocator = { path = "../librustc_allocator" }
20
rustc_target = { path = "../librustc_target" }
21
rustc_borrowck = { path = "../librustc_borrowck" }
22
rustc_data_structures = { path = "../librustc_data_structures" }
23
rustc_errors = { path = "../librustc_errors" }
24
rustc_incremental = { path = "../librustc_incremental" }
25
rustc_lint = { path = "../librustc_lint" }
26
rustc_metadata = { path = "../librustc_metadata" }
27 28
rustc_mir = { path = "../librustc_mir" }
rustc_passes = { path = "../librustc_passes" }
29
rustc_plugin = { path = "../librustc_plugin" }
30 31
rustc_privacy = { path = "../librustc_privacy" }
rustc_resolve = { path = "../librustc_resolve" }
32
rustc_save_analysis = { path = "../librustc_save_analysis" }
33
rustc_traits = { path = "../librustc_traits" }
I
Irina Popa 已提交
34
rustc_codegen_utils = { path = "../librustc_codegen_utils" }
35
rustc_typeck = { path = "../librustc_typeck" }
36
rustc_interface = { path = "../librustc_interface" }
37 38
serialize = { path = "../libserialize" }
syntax = { path = "../libsyntax" }
39
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
40
syntax_ext = { path = "../libsyntax_ext" }
C
cgswords 已提交
41
syntax_pos = { path = "../libsyntax_pos" }