@@ -15,17 +15,18 @@ use git_testament::{git_testament, render_testament};
15
15
use tracing:: { debug, error, info, trace, warn} ;
16
16
17
17
use super :: self_update;
18
- use crate :: cli:: download_tracker:: DownloadTracker ;
19
- use crate :: dist:: {
20
- manifest:: ComponentStatus , notifications as dist_notifications, TargetTriple , ToolchainDesc ,
18
+ use crate :: {
19
+ cli:: download_tracker:: DownloadTracker ,
20
+ config:: Cfg ,
21
+ dist:: {
22
+ manifest:: ComponentStatus , notifications as dist_notifications, TargetTriple , ToolchainDesc ,
23
+ } ,
24
+ install:: UpdateStatus ,
25
+ notifications:: Notification ,
26
+ process:: { terminalsource, Process } ,
27
+ toolchain:: { DistributableToolchain , LocalToolchainName , Toolchain , ToolchainName } ,
28
+ utils:: { notifications as util_notifications, notify:: NotificationLevel , utils} ,
21
29
} ;
22
- use crate :: install:: UpdateStatus ;
23
- use crate :: process:: { terminalsource, Process } ;
24
- use crate :: toolchain:: { DistributableToolchain , LocalToolchainName , Toolchain , ToolchainName } ;
25
- use crate :: utils:: notifications as util_notifications;
26
- use crate :: utils:: notify:: NotificationLevel ;
27
- use crate :: utils:: utils;
28
- use crate :: { config:: Cfg , notifications:: Notification } ;
29
30
30
31
pub ( crate ) const WARN_COMPLETE_PROFILE : & str = "downloading with complete profile isn't recommended unless you are a developer of the rust language" ;
31
32
0 commit comments