rust/compiler/rustc_next_trait_solver/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
876 B
TOML
Raw Permalink Normal View History

[package]
name = "rustc_next_trait_solver"
version = "0.0.0"
edition = "2021"
[dependencies]
2024-06-04 20:02:36 +00:00
# tidy-alphabetical-start
derive-where = "1.2.7"
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
[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",
]