2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_borrowck"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_borrowck"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = { path = "../liblog" }
|
|
|
|
syntax = { path = "../libsyntax" }
|
|
|
|
graphviz = { path = "../libgraphviz" }
|
|
|
|
rustc = { path = "../librustc" }
|
2016-03-22 18:09:57 +01:00
|
|
|
rustc_mir = { path = "../librustc_mir" }
|