2017-08-05 16:55:23 +02:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_trans_utils"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_trans_utils"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[dependencies]
|
2017-09-18 18:12:07 +02:00
|
|
|
ar = "0.3.0"
|
|
|
|
flate2 = "0.2"
|
|
|
|
owning_ref = "0.3.3"
|
2017-08-13 18:53:50 +02:00
|
|
|
log = "0.3"
|
2017-09-18 18:12:07 +02:00
|
|
|
|
2017-08-05 16:55:23 +02:00
|
|
|
syntax = { path = "../libsyntax" }
|
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2017-09-18 18:12:07 +02:00
|
|
|
rustc = { path = "../librustc" }
|
|
|
|
rustc_back = { path = "../librustc_back" }
|
2017-10-19 11:01:31 +02:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|