@@ -13,6 +13,7 @@ use rustc_middle::arena::ArenaAllocatable;
13
13
use rustc_middle:: metadata:: ModChild ;
14
14
use rustc_middle:: middle:: exported_symbols:: ExportedSymbol ;
15
15
use rustc_middle:: middle:: stability:: DeprecationEntry ;
16
+ use rustc_middle:: query:: LocalCrate ;
16
17
use rustc_middle:: ty:: fast_reject:: SimplifiedType ;
17
18
use rustc_middle:: ty:: query:: { ExternProviders , Providers } ;
18
19
use rustc_middle:: ty:: { self , TyCtxt } ;
@@ -367,7 +368,7 @@ pub(in crate::rmeta) fn provide(providers: &mut Providers) {
367
368
* providers = Providers {
368
369
allocator_kind : |tcx, ( ) | CStore :: from_tcx ( tcx) . allocator_kind ( ) ,
369
370
alloc_error_handler_kind : |tcx, ( ) | CStore :: from_tcx ( tcx) . alloc_error_handler_kind ( ) ,
370
- is_private_dep : |_tcx, ( ) | false ,
371
+ is_private_dep : |_tcx, LocalCrate | false ,
371
372
native_library : |tcx, id| {
372
373
tcx. native_libraries ( id. krate )
373
374
. iter ( )
@@ -383,8 +384,8 @@ pub(in crate::rmeta) fn provide(providers: &mut Providers) {
383
384
. contains ( & id)
384
385
} )
385
386
} ,
386
- native_libraries : |tcx, ( ) | native_libs:: collect ( tcx) ,
387
- foreign_modules : |tcx, ( ) | {
387
+ native_libraries : |tcx, LocalCrate | native_libs:: collect ( tcx) ,
388
+ foreign_modules : |tcx, LocalCrate | {
388
389
foreign_modules:: collect ( tcx) . into_iter ( ) . map ( |m| ( m. def_id , m) ) . collect ( )
389
390
} ,
390
391
@@ -482,8 +483,8 @@ pub(in crate::rmeta) fn provide(providers: &mut Providers) {
482
483
} ,
483
484
484
485
dependency_formats : |tcx, ( ) | Lrc :: new ( crate :: dependency_format:: calculate ( tcx) ) ,
485
- has_global_allocator : |tcx, ( ) | CStore :: from_tcx ( tcx) . has_global_allocator ( ) ,
486
- has_alloc_error_handler : |tcx, ( ) | CStore :: from_tcx ( tcx) . has_alloc_error_handler ( ) ,
486
+ has_global_allocator : |tcx, LocalCrate | CStore :: from_tcx ( tcx) . has_global_allocator ( ) ,
487
+ has_alloc_error_handler : |tcx, LocalCrate | CStore :: from_tcx ( tcx) . has_alloc_error_handler ( ) ,
487
488
postorder_cnums : |tcx, ( ) | {
488
489
tcx. arena
489
490
. alloc_slice ( & CStore :: from_tcx ( tcx) . crate_dependencies_in_postorder ( LOCAL_CRATE ) )
0 commit comments