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