26 lines
697 B
TOML
26 lines
697 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_codegen_utils"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "rustc_codegen_utils"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
test = false
|
|
|
|
[dependencies]
|
|
flate2 = "1.0"
|
|
log = "0.4"
|
|
|
|
serialize = { path = "../libserialize" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_allocator = { path = "../librustc_allocator" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
rustc_mir = { path = "../librustc_mir" }
|
|
rustc_incremental = { path = "../librustc_incremental" }
|