2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_trans"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_trans"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
2016-04-29 14:23:15 -07:00
|
|
|
test = false
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
flate = { path = "../libflate" }
|
2017-02-15 07:57:59 -08:00
|
|
|
log = "0.3"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
|
|
|
rustc_back = { path = "../librustc_back" }
|
2016-11-16 23:36:08 +01:00
|
|
|
rustc_bitflags = { path = "../librustc_bitflags" }
|
2016-03-15 12:33:13 +01:00
|
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2016-06-21 18:08:13 -04:00
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2016-03-28 17:36:56 -04:00
|
|
|
rustc_incremental = { path = "../librustc_incremental" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_llvm = { path = "../librustc_llvm" }
|
|
|
|
rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
|
2017-02-03 14:58:13 +00:00
|
|
|
serialize = { path = "../libserialize" }
|
2016-01-21 15:19:23 -08:00
|
|
|
syntax = { path = "../libsyntax" }
|
2016-08-23 03:56:52 +03:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|