]> git.proxmox.com Git - rustc.git/blame - src/librustc_borrowck/Cargo.toml
New upstream version 1.34.2+dfsg1
[rustc.git] / src / librustc_borrowck / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_borrowck"
4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
8name = "rustc_borrowck"
9path = "lib.rs"
10crate-type = ["dylib"]
a7813a04 11test = false
7453a54e
SL
12
13[dependencies]
ff7c6d11 14log = "0.4"
7453a54e 15syntax = { path = "../libsyntax" }
3157f602 16syntax_pos = { path = "../libsyntax_pos" }
9fa01778
XL
17# for "clarity", rename the graphviz crate to dot; graphviz within `borrowck`
18# refers to the borrowck-specific graphviz adapter traits.
19dot = { path = "../libgraphviz", package = "graphviz" }
7453a54e 20rustc = { path = "../librustc" }
54a0048b 21rustc_mir = { path = "../librustc_mir" }
9fa01778
XL
22errors = { path = "../librustc_errors", package = "rustc_errors" }
23rustc_data_structures = { path = "../librustc_data_structures" }