]> git.proxmox.com Git - rustc.git/blob - src/librustc_driver/Cargo.toml
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / librustc_driver / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_driver"
4 version = "0.0.0"
5
6 [lib]
7 name = "rustc_driver"
8 path = "lib.rs"
9 crate-type = ["dylib"]
10
11 [dependencies]
12 arena = { path = "../libarena" }
13 flate = { path = "../libflate" }
14 graphviz = { path = "../libgraphviz" }
15 log = { path = "../liblog" }
16 rustc = { path = "../librustc" }
17 rustc_back = { path = "../librustc_back" }
18 rustc_borrowck = { path = "../librustc_borrowck" }
19 rustc_const_eval = { path = "../librustc_const_eval" }
20 rustc_lint = { path = "../librustc_lint" }
21 rustc_llvm = { path = "../librustc_llvm" }
22 rustc_mir = { path = "../librustc_mir" }
23 rustc_plugin = { path = "../librustc_plugin" }
24 rustc_passes = { path = "../librustc_passes" }
25 rustc_privacy = { path = "../librustc_privacy" }
26 rustc_incremental = { path = "../librustc_incremental" }
27 rustc_resolve = { path = "../librustc_resolve" }
28 rustc_save_analysis = { path = "../librustc_save_analysis" }
29 rustc_trans = { path = "../librustc_trans" }
30 rustc_typeck = { path = "../librustc_typeck" }
31 rustc_metadata = { path = "../librustc_metadata" }
32 serialize = { path = "../libserialize" }
33 syntax = { path = "../libsyntax" }
34 syntax_ext = { path = "../libsyntax_ext" }