]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
update scoped_tls to 1.0
[rust.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 graphviz = { path = "../libgraphviz" }
14 log = "0.4"
15 env_logger = { version = "0.5", default-features = false }
16 rustc-rayon = "0.1.1"
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 rustc_mir = { path = "../librustc_mir" }
28 rustc_passes = { path = "../librustc_passes" }
29 rustc_plugin = { path = "../librustc_plugin" }
30 rustc_privacy = { path = "../librustc_privacy" }
31 rustc_resolve = { path = "../librustc_resolve" }
32 rustc_save_analysis = { path = "../librustc_save_analysis" }
33 rustc_traits = { path = "../librustc_traits" }
34 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
35 rustc_typeck = { path = "../librustc_typeck" }
36 serialize = { path = "../libserialize" }
37 syntax = { path = "../libsyntax" }
38 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
39 syntax_ext = { path = "../libsyntax_ext" }
40 syntax_pos = { path = "../libsyntax_pos" }