This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -427,9 +427,9 @@ dependencies = [
427427
428428[[package ]]
429429name = " chalk-derive"
430- version = " 0.26 .0"
430+ version = " 0.27 .0"
431431source = " registry+https://github.com/rust-lang/crates.io-index"
432- checksum = " 72aade21de1aa12a31fc287ec9891915965b6d7caac1c5de5ea095b6b9bc4cc4 "
432+ checksum = " d5444ff2a211fe2a863e44d16a368c3d8a314d489de21b8eeb6879f14dd5d4a8 "
433433dependencies = [
434434 " proc-macro2" ,
435435 " quote" ,
@@ -439,9 +439,9 @@ dependencies = [
439439
440440[[package ]]
441441name = " chalk-engine"
442- version = " 0.26 .0"
442+ version = " 0.27 .0"
443443source = " registry+https://github.com/rust-lang/crates.io-index"
444- checksum = " fcffc1240cc5f9c5d1d8028d35a293e193a647a71244d51d3d5b4295cbea0593 "
444+ checksum = " 5b8ba5b42db32c9c92deec8baf6821628b1234eaa296c48dff39cecbce3c0271 "
445445dependencies = [
446446 " chalk-derive" ,
447447 " chalk-ir" ,
@@ -452,19 +452,19 @@ dependencies = [
452452
453453[[package ]]
454454name = " chalk-ir"
455- version = " 0.26 .0"
455+ version = " 0.27 .0"
456456source = " registry+https://github.com/rust-lang/crates.io-index"
457- checksum = " 6b856e69b664ca362a30c21f477fe10f59f74458978bc9bfd667820549bc7758 "
457+ checksum = " e39c3db1dd4abfaa7658faaa62e5fe998a982a592b710bd971fad5b6adfcfdef "
458458dependencies = [
459459 " chalk-derive" ,
460460 " lazy_static" ,
461461]
462462
463463[[package ]]
464464name = " chalk-solve"
465- version = " 0.26 .0"
465+ version = " 0.27 .0"
466466source = " registry+https://github.com/rust-lang/crates.io-index"
467- checksum = " abae2ca9cca3b0a2f33fe946a688881a8b17b8edc088fe3820cb770275e965ed "
467+ checksum = " a673abe3077adc25f8ee0894198aed494a5bb0ce50ee993900d0ee1a44e1948a "
468468dependencies = [
469469 " chalk-derive" ,
470470 " chalk-ir" ,
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ rustc_index = { path = "../rustc_index" }
2626rustc_serialize = { path = " ../rustc_serialize" }
2727rustc_ast = { path = " ../rustc_ast" }
2828rustc_span = { path = " ../rustc_span" }
29- chalk-ir = " 0.26 .0"
29+ chalk-ir = " 0.27 .0"
3030smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
3131measureme = " 0.7.1"
3232rustc_session = { path = " ../rustc_session" }
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ rustc_hir = { path = "../rustc_hir" }
1212rustc_index = { path = " ../rustc_index" }
1313rustc_ast = { path = " ../rustc_ast" }
1414rustc_span = { path = " ../rustc_span" }
15- chalk-ir = " 0.26 .0"
16- chalk-solve = " 0.26 .0"
17- chalk-engine = " 0.26 .0"
15+ chalk-ir = " 0.27 .0"
16+ chalk-solve = " 0.27 .0"
17+ chalk-engine = " 0.27 .0"
1818smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
1919rustc_infer = { path = " ../rustc_infer" }
2020rustc_trait_selection = { path = " ../rustc_trait_selection" }
Original file line number Diff line number Diff line change @@ -427,6 +427,7 @@ impl<'tcx> chalk_solve::RustIrDatabase<RustInterner<'tcx>> for RustIrDatabase<'t
427427 FnMut => self . interner . tcx . lang_items ( ) . fn_mut_trait ( ) ,
428428 FnOnce => self . interner . tcx . lang_items ( ) . fn_once_trait ( ) ,
429429 Unsize => self . interner . tcx . lang_items ( ) . unsize_trait ( ) ,
430+ Unpin => self . interner . tcx . lang_items ( ) . unpin_trait ( ) ,
430431 } ;
431432 def_id. map ( chalk_ir:: TraitId )
432433 }
You can’t perform that action at this time.
0 commit comments