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