]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_borrowck/Cargo.toml
New upstream version 1.57.0+dfsg1
[rustc.git] / compiler / rustc_borrowck / Cargo.toml
CommitLineData
1b1a35ee 1[package]
c295e0f8 2name = "rustc_borrowck"
1b1a35ee 3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
7doctest = false
8
9[dependencies]
10either = "1.5.0"
1b1a35ee
XL
11itertools = "0.9"
12tracing = "0.1"
94222f64 13polonius-engine = "0.13.0"
c295e0f8 14smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1b1a35ee
XL
15rustc_data_structures = { path = "../rustc_data_structures" }
16rustc_errors = { path = "../rustc_errors" }
c295e0f8 17rustc_graphviz = { path = "../rustc_graphviz" }
1b1a35ee
XL
18rustc_hir = { path = "../rustc_hir" }
19rustc_index = { path = "../rustc_index" }
20rustc_infer = { path = "../rustc_infer" }
21rustc_lexer = { path = "../rustc_lexer" }
c295e0f8
XL
22rustc_middle = { path = "../rustc_middle" }
23rustc_const_eval = { path = "../rustc_const_eval" }
24rustc_mir_dataflow = { path = "../rustc_mir_dataflow" }
1b1a35ee
XL
25rustc_serialize = { path = "../rustc_serialize" }
26rustc_session = { path = "../rustc_session" }
27rustc_target = { path = "../rustc_target" }
28rustc_trait_selection = { path = "../rustc_trait_selection" }
94222f64 29rustc_traits = { path = "../rustc_traits" }
1b1a35ee 30rustc_span = { path = "../rustc_span" }