2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_passes"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_passes"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
2017-12-27 21:32:01 +01:00
|
|
|
rustc_mir = { path = "../librustc_mir"}
|
2016-04-27 10:47:46 +02:00
|
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
2018-02-27 17:11:14 +01:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2016-01-21 15:19:23 -08:00
|
|
|
syntax = { path = "../libsyntax" }
|
2016-06-21 18:08:13 -04:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2017-02-15 07:57:59 -08:00
|
|
|
rustc_errors = { path = "../librustc_errors" }
|