]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/Cargo.toml
Remove the in-tree `flate` crate
[rust.git] / src / librustc_trans / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_trans"
4 version = "0.0.0"
5
6 [lib]
7 name = "rustc_trans"
8 path = "lib.rs"
9 crate-type = ["dylib"]
10 test = false
11
12 [dependencies]
13 flate2 = "0.2"
14 log = "0.3"
15 owning_ref = "0.3.3"
16 rustc = { path = "../librustc" }
17 rustc_back = { path = "../librustc_back" }
18 rustc_bitflags = { path = "../librustc_bitflags" }
19 rustc_const_math = { path = "../librustc_const_math" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 rustc_errors = { path = "../librustc_errors" }
22 rustc_incremental = { path = "../librustc_incremental" }
23 rustc_llvm = { path = "../librustc_llvm" }
24 rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
25 serialize = { path = "../libserialize" }
26 syntax = { path = "../libsyntax" }
27 syntax_pos = { path = "../libsyntax_pos" }
28
29 [target."cfg(windows)".dependencies]
30 gcc = "0.3.50"