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]
|
2017-09-08 15:08:01 -04:00
|
|
|
bitflags = "1.0"
|
2017-07-28 14:28:08 +02:00
|
|
|
num_cpus = "1.0"
|
2017-06-08 14:10:36 -07:00
|
|
|
flate2 = "0.2"
|
2017-06-15 07:08:18 -07:00
|
|
|
jobserver = "0.1.5"
|
2017-02-15 07:57:59 -08:00
|
|
|
log = "0.3"
|
2017-04-26 23:22:45 +02:00
|
|
|
owning_ref = "0.3.3"
|
2017-06-29 17:52:43 +03:00
|
|
|
rustc-demangle = "0.1.4"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
2017-06-03 14:54:08 -07:00
|
|
|
rustc_allocator = { path = "../librustc_allocator" }
|
2017-10-09 02:14:00 +02:00
|
|
|
rustc_apfloat = { path = "../librustc_apfloat" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_back = { path = "../librustc_back" }
|
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-08-05 16:55:23 +02:00
|
|
|
rustc_trans_utils = { path = "../librustc_trans_utils" }
|
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" }
|
2017-05-23 19:02:23 -07:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
2017-10-11 21:29:46 -03:00
|
|
|
cc = "1.0.1"
|