Skip to content

Commit ccb2ffe

Browse files
Merge pull request #21311 from A4-Tacks/serde-derive-feature
internal: Fix hir-ty implicit serde derive feature
2 parents 8f28e82 + 5abec3c commit ccb2ffe

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/hir-ty/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ arrayvec.workspace = true
1919
smallvec.workspace = true
2020
ena = "0.14.3"
2121
serde.workspace = true
22+
serde_derive.workspace = true
2223
either.workspace = true
2324
oorandom = "11.1.5"
2425
tracing = { workspace = true, features = ["attributes"] }

crates/hir-ty/src/next_solver/format_proof_tree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use rustc_type_ir::{solve::GoalSource, solve::inspect::GoalEvaluation};
2-
use serde::{Deserialize, Serialize};
2+
use serde_derive::{Deserialize, Serialize};
33

44
use crate::next_solver::infer::InferCtxt;
55
use crate::next_solver::inspect::{InspectCandidate, InspectGoal};

0 commit comments

Comments
 (0)