23 lines
480 B
TOML
23 lines
480 B
TOML
[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]
|
|
ar = "0.3.0"
|
|
flate2 = "0.2"
|
|
owning_ref = "0.3.3"
|
|
log = "0.3"
|
|
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_back = { path = "../librustc_back" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|