rust/src/librustc_trans/Cargo.toml

31 lines
874 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "rustc_trans"
version = "0.0.0"
[lib]
name = "rustc_trans"
path = "lib.rs"
crate-type = ["dylib"]
test = false
[dependencies]
flate2 = "0.2"
log = "0.3"
owning_ref = "0.3.3"
rustc = { path = "../librustc" }
rustc_back = { path = "../librustc_back" }
rustc_bitflags = { path = "../librustc_bitflags" }
rustc_const_math = { path = "../librustc_const_math" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_errors = { path = "../librustc_errors" }
rustc_incremental = { path = "../librustc_incremental" }
rustc_llvm = { path = "../librustc_llvm" }
rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
serialize = { path = "../libserialize" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
2017-05-23 19:02:23 -07:00
[target."cfg(windows)".dependencies]
gcc = "0.3.50"