]> git.lizzy.rs Git - rust.git/blob - src/librustc_borrowck/Cargo.toml
Rollup merge of #61099 - spastorino:ignore-borrow-iterate, r=oli-obk
[rust.git] / src / librustc_borrowck / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_borrowck"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_borrowck"
9 path = "lib.rs"
10 crate-type = ["dylib"]
11 test = false
12
13 [dependencies]
14 log = "0.4"
15 syntax = { path = "../libsyntax" }
16 syntax_pos = { path = "../libsyntax_pos" }
17 # for "clarity", rename the graphviz crate to dot; graphviz within `borrowck`
18 # refers to the borrowck-specific graphviz adapter traits.
19 dot = { path = "../libgraphviz", package = "graphviz" }
20 rustc = { path = "../librustc" }
21 rustc_mir = { path = "../librustc_mir" }
22 errors = { path = "../librustc_errors", package = "rustc_errors" }
23 rustc_data_structures = { path = "../librustc_data_structures" }