Skip to content

Commit

Permalink
Make it not depend on nightly conditionally
Browse files Browse the repository at this point in the history
  • Loading branch information
compiler-errors committed Dec 8, 2023
1 parent 1f5895b commit 80f240a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion compiler/rustc_next_trait_solver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ version = "0.0.0"
edition = "2021"

[dependencies]
rustc_type_ir = { path = "../rustc_type_ir" }
rustc_type_ir = { path = "../rustc_type_ir", default-features = false }

[features]
default = ["nightly"]
nightly = [
"rustc_type_ir/nightly",
]

0 comments on commit 80f240a

Please sign in to comment.