2020-12-30 17:48:40 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_borrowck"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-12-30 17:48:40 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
either = "1.5.0"
|
2022-03-04 17:54:28 +00:00
|
|
|
itertools = "0.10.1"
|
2020-12-30 17:48:40 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
polonius-engine = "0.13.0"
|
2022-06-26 22:48:55 +00:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2020-12-30 17:48:40 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
|
|
rustc_graphviz = { path = "../rustc_graphviz" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-12-30 17:48:40 +00:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
|
|
|
rustc_infer = { path = "../rustc_infer" }
|
|
|
|
rustc_lexer = { path = "../rustc_lexer" }
|
2022-06-23 04:43:01 +00:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-12-30 17:48:40 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2021-01-05 18:53:07 +00:00
|
|
|
rustc_mir_dataflow = { path = "../rustc_mir_dataflow" }
|
2020-12-30 17:48:40 +00:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_session = { path = "../rustc_session" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
|
|
|
rustc_traits = { path = "../rustc_traits" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|