2023-11-22 23:44:58 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_next_trait_solver"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-04 20:02:36 +00:00
|
|
|
# tidy-alphabetical-start
|
2024-06-26 22:59:30 +00:00
|
|
|
derive-where = "1.2.7"
|
2024-06-18 17:21:48 +00:00
|
|
|
rustc_ast_ir = { path = "../rustc_ast_ir", default-features = false }
|
2024-06-17 21:59:08 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
|
|
|
|
rustc_index = { path = "../rustc_index", default-features = false }
|
|
|
|
rustc_macros = { path = "../rustc_macros", optional = true }
|
|
|
|
rustc_serialize = { path = "../rustc_serialize", optional = true }
|
2024-06-04 20:02:36 +00:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir", default-features = false }
|
2024-06-17 21:59:08 +00:00
|
|
|
rustc_type_ir_macros = { path = "../rustc_type_ir_macros" }
|
|
|
|
tracing = "0.1"
|
2024-06-04 20:02:36 +00:00
|
|
|
# tidy-alphabetical-end
|
2023-12-05 18:58:14 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["nightly"]
|
2024-06-17 21:59:08 +00:00
|
|
|
nightly = [
|
2024-07-15 16:40:06 +00:00
|
|
|
"dep:rustc_data_structures",
|
|
|
|
"dep:rustc_macros",
|
|
|
|
"dep:rustc_serialize",
|
2024-06-17 21:59:08 +00:00
|
|
|
"rustc_ast_ir/nightly",
|
|
|
|
"rustc_index/nightly",
|
|
|
|
"rustc_type_ir/nightly",
|
|
|
|
]
|