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.

30 lines
895 B
TOML
Raw Permalink Normal View History

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