mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-12-27 16:07:46 +00:00
Merge pull request #21311 from A4-Tacks/serde-derive-feature
internal: Fix hir-ty implicit serde derive feature
This commit is contained in:
commit
ccb2ffe653
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -903,6 +903,7 @@ dependencies = [
|
||||
"salsa",
|
||||
"salsa-macros",
|
||||
"serde",
|
||||
"serde_derive",
|
||||
"smallvec",
|
||||
"span",
|
||||
"stdx",
|
||||
|
||||
@ -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"] }
|
||||
|
||||
@ -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};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user