Merge pull request #21311 from A4-Tacks/serde-derive-feature

internal: Fix hir-ty implicit serde derive feature
This commit is contained in:
Chayim Refael Friedman 2025-12-21 07:42:18 +00:00 committed by GitHub
commit ccb2ffe653
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

1
Cargo.lock generated
View File

@ -903,6 +903,7 @@ dependencies = [
"salsa",
"salsa-macros",
"serde",
"serde_derive",
"smallvec",
"span",
"stdx",

View File

@ -19,6 +19,7 @@ arrayvec.workspace = true
smallvec.workspace = true
ena = "0.14.3"
serde.workspace = true
serde_derive.workspace = true
either.workspace = true
oorandom = "11.1.5"
tracing = { workspace = true, features = ["attributes"] }

View File

@ -1,5 +1,5 @@
use rustc_type_ir::{solve::GoalSource, solve::inspect::GoalEvaluation};
use serde::{Deserialize, Serialize};
use serde_derive::{Deserialize, Serialize};
use crate::next_solver::infer::InferCtxt;
use crate::next_solver::inspect::{InspectCandidate, InspectGoal};