File tree 4 files changed +13
-12
lines changed
4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -427,9 +427,9 @@ dependencies = [
427
427
428
428
[[package ]]
429
429
name = " chalk-derive"
430
- version = " 0.26 .0"
430
+ version = " 0.27 .0"
431
431
source = " registry+https://github.com/rust-lang/crates.io-index"
432
- checksum = " 72aade21de1aa12a31fc287ec9891915965b6d7caac1c5de5ea095b6b9bc4cc4 "
432
+ checksum = " d5444ff2a211fe2a863e44d16a368c3d8a314d489de21b8eeb6879f14dd5d4a8 "
433
433
dependencies = [
434
434
" proc-macro2" ,
435
435
" quote" ,
@@ -439,9 +439,9 @@ dependencies = [
439
439
440
440
[[package ]]
441
441
name = " chalk-engine"
442
- version = " 0.26 .0"
442
+ version = " 0.27 .0"
443
443
source = " registry+https://github.com/rust-lang/crates.io-index"
444
- checksum = " fcffc1240cc5f9c5d1d8028d35a293e193a647a71244d51d3d5b4295cbea0593 "
444
+ checksum = " 5b8ba5b42db32c9c92deec8baf6821628b1234eaa296c48dff39cecbce3c0271 "
445
445
dependencies = [
446
446
" chalk-derive" ,
447
447
" chalk-ir" ,
@@ -452,19 +452,19 @@ dependencies = [
452
452
453
453
[[package ]]
454
454
name = " chalk-ir"
455
- version = " 0.26 .0"
455
+ version = " 0.27 .0"
456
456
source = " registry+https://github.com/rust-lang/crates.io-index"
457
- checksum = " 6b856e69b664ca362a30c21f477fe10f59f74458978bc9bfd667820549bc7758 "
457
+ checksum = " e39c3db1dd4abfaa7658faaa62e5fe998a982a592b710bd971fad5b6adfcfdef "
458
458
dependencies = [
459
459
" chalk-derive" ,
460
460
" lazy_static" ,
461
461
]
462
462
463
463
[[package ]]
464
464
name = " chalk-solve"
465
- version = " 0.26 .0"
465
+ version = " 0.27 .0"
466
466
source = " registry+https://github.com/rust-lang/crates.io-index"
467
- checksum = " abae2ca9cca3b0a2f33fe946a688881a8b17b8edc088fe3820cb770275e965ed "
467
+ checksum = " a673abe3077adc25f8ee0894198aed494a5bb0ce50ee993900d0ee1a44e1948a "
468
468
dependencies = [
469
469
" chalk-derive" ,
470
470
" chalk-ir" ,
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ rustc_index = { path = "../rustc_index" }
26
26
rustc_serialize = { path = " ../rustc_serialize" }
27
27
rustc_ast = { path = " ../rustc_ast" }
28
28
rustc_span = { path = " ../rustc_span" }
29
- chalk-ir = " 0.26 .0"
29
+ chalk-ir = " 0.27 .0"
30
30
smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
31
31
measureme = " 0.7.1"
32
32
rustc_session = { path = " ../rustc_session" }
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ rustc_hir = { path = "../rustc_hir" }
12
12
rustc_index = { path = " ../rustc_index" }
13
13
rustc_ast = { path = " ../rustc_ast" }
14
14
rustc_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"
18
18
smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
19
19
rustc_infer = { path = " ../rustc_infer" }
20
20
rustc_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
427
427
FnMut => self . interner . tcx . lang_items ( ) . fn_mut_trait ( ) ,
428
428
FnOnce => self . interner . tcx . lang_items ( ) . fn_once_trait ( ) ,
429
429
Unsize => self . interner . tcx . lang_items ( ) . unsize_trait ( ) ,
430
+ Unpin => self . interner . tcx . lang_items ( ) . unpin_trait ( ) ,
430
431
} ;
431
432
def_id. map ( chalk_ir:: TraitId )
432
433
}
You can’t perform that action at this time.
0 commit comments