2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_infer"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-08-28 03:58:48 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2024-02-24 22:22:28 +00:00
|
|
|
rustc_ast_ir = { path = "../rustc_ast_ir" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2024-07-05 20:39:24 +00:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
2022-06-26 22:48:55 +00:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2024-10-10 18:56:21 +00:00
|
|
|
thin-vec = "0.2.12"
|
2023-10-20 02:37:29 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|