File tree Expand file tree Collapse file tree 4 files changed +16
-14
lines changed Expand file tree Collapse file tree 4 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -414,21 +414,21 @@ dependencies = [
414414
415415[[package ]]
416416name = " chalk-derive"
417- version = " 0.87 .0"
417+ version = " 0.92 .0"
418418source = " registry+https://github.com/rust-lang/crates.io-index"
419- checksum = " d552b2fa341f5fc35c6b917b1d289d3c3a34d0b74e579390ea6192d6152a8cdb "
419+ checksum = " ff5053a8a42dbff5279a82423946fc56dc1253b76cf211b2b3c14b3aad4e1281 "
420420dependencies = [
421421 " proc-macro2" ,
422422 " quote" ,
423- " syn 1 .0.102 " ,
424- " synstructure 0.12.6 " ,
423+ " syn 2 .0.8 " ,
424+ " synstructure 0.13.0 " ,
425425]
426426
427427[[package ]]
428428name = " chalk-engine"
429- version = " 0.87 .0"
429+ version = " 0.92 .0"
430430source = " registry+https://github.com/rust-lang/crates.io-index"
431- checksum = " 7e54ac43048cb31c470d7b3e3acd409090ef4a5abddfe02455187aebc3d6879f "
431+ checksum = " b9d0e18f29b8b0f4dcf7d31fe00c884af67719699e381e8dcc9d9624b1621c60 "
432432dependencies = [
433433 " chalk-derive" ,
434434 " chalk-ir" ,
@@ -439,9 +439,9 @@ dependencies = [
439439
440440[[package ]]
441441name = " chalk-ir"
442- version = " 0.87 .0"
442+ version = " 0.92 .0"
443443source = " registry+https://github.com/rust-lang/crates.io-index"
444- checksum = " 43aa55deff4e7fbdb09fa014543372f2c95a06835ac487b9ce57b5099b950838 "
444+ checksum = " 8a56de2146a8ed0fcd54f4bd50db852f1de4eac9e1efe568494f106c21b77d2a "
445445dependencies = [
446446 " bitflags" ,
447447 " chalk-derive" ,
@@ -450,9 +450,9 @@ dependencies = [
450450
451451[[package ]]
452452name = " chalk-solve"
453- version = " 0.87 .0"
453+ version = " 0.92 .0"
454454source = " registry+https://github.com/rust-lang/crates.io-index"
455- checksum = " 61213deefc36ba265ad01c4d997e18bcddf7922862a4594a47ca4575afb3dab4 "
455+ checksum = " b392e02b4c81ec76d3748da839fc70a5539b83d27c9030668463d34d5110b860 "
456456dependencies = [
457457 " chalk-derive" ,
458458 " chalk-ir" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ edition = "2021"
77
88[dependencies ]
99bitflags = " 1.2.1"
10- chalk-ir = " 0.87 .0"
10+ chalk-ir = " 0.92 .0"
1111derive_more = " 0.99.17"
1212either = " 1.5.0"
1313gsgdt = " 0.1.2"
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ rustc_hir = { path = "../rustc_hir" }
1111rustc_ast = { path = " ../rustc_ast" }
1212rustc_span = { path = " ../rustc_span" }
1313rustc_target = { path = " ../rustc_target" }
14- chalk-ir = " 0.87 .0"
15- chalk-engine = " 0.87 .0"
16- chalk-solve = " 0.87 .0"
14+ chalk-ir = " 0.92 .0"
15+ chalk-engine = " 0.92 .0"
16+ chalk-solve = " 0.92 .0"
1717smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
1818rustc_infer = { path = " ../rustc_infer" }
1919rustc_trait_selection = { path = " ../rustc_trait_selection" }
Original file line number Diff line number Diff line change @@ -572,6 +572,8 @@ impl<'tcx> chalk_solve::RustIrDatabase<RustInterner<'tcx>> for RustIrDatabase<'t
572572 DiscriminantKind => lang_items. discriminant_kind_trait ( ) ,
573573 DispatchFromDyn => lang_items. dispatch_from_dyn_trait ( ) ,
574574 Tuple => lang_items. tuple_trait ( ) ,
575+ Pointee => lang_items. pointee_trait ( ) ,
576+ FnPtr => lang_items. fn_ptr_trait ( ) ,
575577 } ;
576578 def_id. map ( chalk_ir:: TraitId )
577579 }
You can’t perform that action at this time.
0 commit comments