rust/src/librustc_borrowck/Cargo.toml

21 lines
508 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "rustc_borrowck"
version = "0.0.0"
[lib]
name = "rustc_borrowck"
path = "lib.rs"
crate-type = ["dylib"]
test = false
[dependencies]
log = "0.3"
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
graphviz = { path = "../libgraphviz" }
rustc = { path = "../librustc" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_mir = { path = "../librustc_mir" }
2016-06-27 12:45:33 -05:00
rustc_errors = { path = "../librustc_errors" }