@@ -29,41 +29,16 @@ use url::Url;
2929use std:: { cmp:: { max, min} , collections:: { BTreeMap , BTreeSet } , future:: Future , iter:: Peekable , ops:: { Deref , Not } , path:: Path , sync:: { Arc , LazyLock , Mutex } , time:: Duration } ;
3030use std:: io;
3131use crate :: {
32- app:: AppStateAction ,
33- app_data_dir,
34- avatar_cache:: AvatarUpdate ,
35- event_preview:: text_preview_of_timeline_item,
36- home:: {
37- invite_screen:: { JoinRoomResultAction , LeaveRoomResultAction } ,
38- link_preview:: { LinkPreviewData , LinkPreviewDataNonNumeric , LinkPreviewRateLimitResponse } ,
39- room_screen:: TimelineUpdate ,
40- rooms_list:: {
41- self , InvitedRoomInfo , InviterInfo , JoinedRoomInfo , RoomsListUpdate ,
42- enqueue_rooms_list_update,
43- } ,
44- rooms_list_header:: RoomsListHeaderAction ,
45- tombstone_footer:: SuccessorRoomDetails ,
46- } ,
47- login:: login_screen:: LoginAction ,
48- logout:: {
49- logout_confirm_modal:: LogoutAction ,
50- logout_state_machine:: { is_logout_in_progress, logout_with_state_machine, LogoutConfig } ,
51- } ,
52- media_cache:: { MediaCacheEntry , MediaCacheEntryRef } ,
53- persistence:: { self , ClientSessionPersisted , load_app_state} ,
54- profile:: {
32+ app:: AppStateAction , app_data_dir, avatar_cache:: AvatarUpdate , event_preview:: text_preview_of_timeline_item, home:: {
33+ invite_screen:: { JoinRoomResultAction , LeaveRoomResultAction } , link_preview:: { LinkPreviewData , LinkPreviewDataNonNumeric , LinkPreviewRateLimitResponse } , room_screen:: TimelineUpdate , rooms_list:: { self , InvitedRoomInfo , InviterInfo , JoinedRoomInfo , RoomsListUpdate , enqueue_rooms_list_update} , rooms_list_header:: RoomsListHeaderAction , tombstone_footer:: SuccessorRoomDetails
34+ } , login:: login_screen:: LoginAction , logout:: { logout_confirm_modal:: LogoutAction , logout_state_machine:: { LogoutConfig , is_logout_in_progress, logout_with_state_machine} } , media_cache:: { MediaCacheEntry , MediaCacheEntryRef } , persistence:: { self , ClientSessionPersisted , load_app_state} , profile:: {
5535 user_profile:: { AvatarState , UserProfile } ,
56- user_profile_cache:: { enqueue_user_profile_update, UserProfileUpdate } ,
57- } ,
58- room:: { FetchedRoomAvatar , FetchedRoomPreview , RoomPreviewAction } ,
59- shared:: {
36+ user_profile_cache:: { UserProfileUpdate , enqueue_user_profile_update} ,
37+ } , room:: { FetchedRoomAvatar , FetchedRoomPreview , RoomPreviewAction } , shared:: {
6038 html_or_plaintext:: MatrixLinkPillState ,
6139 jump_to_bottom_button:: UnreadMessageCount ,
62- popup_list:: { enqueue_popup_notification, PopupItem , PopupKind }
63- } ,
64- space_service_sync:: space_service_loop,
65- utils:: { self , avatar_from_room_name, AVATAR_THUMBNAIL_FORMAT , RoomName } ,
66- verification:: add_verification_event_handlers_and_sync_client
40+ popup_list:: { PopupItem , PopupKind , enqueue_popup_notification}
41+ } , space_service_sync:: space_service_loop, utils:: { self , AVATAR_THUMBNAIL_FORMAT , RoomName , avatar_from_room_name} , verification:: add_verification_event_handlers_and_sync_client
6742} ;
6843
6944#[ derive( Parser , Debug , Default ) ]
0 commit comments