summary refs log tree commit diff
path: root/src/librustc_borrowck/Cargo.toml
blob: 25f02537490fa8d694a52ff0a366692622c54d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[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_mir = { path = "../librustc_mir" }
rustc_errors = { path = "../librustc_errors" }