File tree 4 files changed +16
-14
lines changed
4 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -414,21 +414,21 @@ dependencies = [
414
414
415
415
[[package ]]
416
416
name = " chalk-derive"
417
- version = " 0.87 .0"
417
+ version = " 0.92 .0"
418
418
source = " registry+https://github.com/rust-lang/crates.io-index"
419
- checksum = " d552b2fa341f5fc35c6b917b1d289d3c3a34d0b74e579390ea6192d6152a8cdb "
419
+ checksum = " ff5053a8a42dbff5279a82423946fc56dc1253b76cf211b2b3c14b3aad4e1281 "
420
420
dependencies = [
421
421
" proc-macro2" ,
422
422
" quote" ,
423
- " syn 1 .0.102 " ,
424
- " synstructure 0.12.6 " ,
423
+ " syn 2 .0.8 " ,
424
+ " synstructure 0.13.0 " ,
425
425
]
426
426
427
427
[[package ]]
428
428
name = " chalk-engine"
429
- version = " 0.87 .0"
429
+ version = " 0.92 .0"
430
430
source = " registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = " 7e54ac43048cb31c470d7b3e3acd409090ef4a5abddfe02455187aebc3d6879f "
431
+ checksum = " b9d0e18f29b8b0f4dcf7d31fe00c884af67719699e381e8dcc9d9624b1621c60 "
432
432
dependencies = [
433
433
" chalk-derive" ,
434
434
" chalk-ir" ,
@@ -439,9 +439,9 @@ dependencies = [
439
439
440
440
[[package ]]
441
441
name = " chalk-ir"
442
- version = " 0.87 .0"
442
+ version = " 0.92 .0"
443
443
source = " registry+https://github.com/rust-lang/crates.io-index"
444
- checksum = " 43aa55deff4e7fbdb09fa014543372f2c95a06835ac487b9ce57b5099b950838 "
444
+ checksum = " 8a56de2146a8ed0fcd54f4bd50db852f1de4eac9e1efe568494f106c21b77d2a "
445
445
dependencies = [
446
446
" bitflags" ,
447
447
" chalk-derive" ,
@@ -450,9 +450,9 @@ dependencies = [
450
450
451
451
[[package ]]
452
452
name = " chalk-solve"
453
- version = " 0.87 .0"
453
+ version = " 0.92 .0"
454
454
source = " registry+https://github.com/rust-lang/crates.io-index"
455
- checksum = " 61213deefc36ba265ad01c4d997e18bcddf7922862a4594a47ca4575afb3dab4 "
455
+ checksum = " b392e02b4c81ec76d3748da839fc70a5539b83d27c9030668463d34d5110b860 "
456
456
dependencies = [
457
457
" chalk-derive" ,
458
458
" chalk-ir" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ edition = "2021"
7
7
8
8
[dependencies ]
9
9
bitflags = " 1.2.1"
10
- chalk-ir = " 0.87 .0"
10
+ chalk-ir = " 0.92 .0"
11
11
derive_more = " 0.99.17"
12
12
either = " 1.5.0"
13
13
gsgdt = " 0.1.2"
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ rustc_hir = { path = "../rustc_hir" }
11
11
rustc_ast = { path = " ../rustc_ast" }
12
12
rustc_span = { path = " ../rustc_span" }
13
13
rustc_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"
17
17
smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
18
18
rustc_infer = { path = " ../rustc_infer" }
19
19
rustc_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
572
572
DiscriminantKind => lang_items. discriminant_kind_trait ( ) ,
573
573
DispatchFromDyn => lang_items. dispatch_from_dyn_trait ( ) ,
574
574
Tuple => lang_items. tuple_trait ( ) ,
575
+ Pointee => lang_items. pointee_trait ( ) ,
576
+ FnPtr => lang_items. fn_ptr_trait ( ) ,
575
577
} ;
576
578
def_id. map ( chalk_ir:: TraitId )
577
579
}
You can’t perform that action at this time.
0 commit comments