2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_plugin"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_plugin"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = { path = "../liblog" }
|
|
|
|
rustc = { path = "../librustc" }
|
2016-03-07 15:42:29 -08:00
|
|
|
rustc_back = { path = "../librustc_back" }
|
2016-02-21 09:49:13 -08:00
|
|
|
rustc_bitflags = { path = "../librustc_bitflags" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_front = { path = "../librustc_front" }
|
|
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
|
|
rustc_mir = { path = "../librustc_mir" }
|
|
|
|
syntax = { path = "../libsyntax" }
|