@@ -2,7 +2,7 @@ use crate::core::compiler::{
2
2
BuildConfig , CompileKind , MessageFormat , RustcTargetData , TimingOutput ,
3
3
} ;
4
4
use crate :: core:: resolver:: { CliFeatures , ForceAllTargets , HasDevUnits } ;
5
- use crate :: core:: { shell, Edition , Package , Target , TargetKind , Workspace } ;
5
+ use crate :: core:: { profiles :: Profiles , shell, Edition , Package , Target , TargetKind , Workspace } ;
6
6
use crate :: ops:: lockfile:: LOCKFILE_NAME ;
7
7
use crate :: ops:: registry:: RegistryOrIndex ;
8
8
use crate :: ops:: { self , CompileFilter , CompileOptions , NewOptions , Packages , VersionControl } ;
@@ -274,7 +274,11 @@ pub trait CommandExt: Sized {
274
274
self . _arg (
275
275
opt ( "profile" , profile)
276
276
. value_name ( "PROFILE-NAME" )
277
- . help_heading ( heading:: COMPILATION_OPTIONS ) ,
277
+ . help_heading ( heading:: COMPILATION_OPTIONS )
278
+ . add ( clap_complete:: ArgValueCandidates :: new ( || {
279
+ let candidates = get_profile_candidates ( ) ;
280
+ candidates. unwrap_or_default ( )
281
+ } ) ) ,
278
282
)
279
283
}
280
284
@@ -1106,6 +1110,53 @@ pub fn get_registry_candidates() -> CargoResult<Vec<clap_complete::CompletionCan
1106
1110
}
1107
1111
}
1108
1112
1113
+ fn get_profile_candidates ( ) -> Vec < clap_complete:: CompletionCandidate > {
1114
+ match get_workspace_profile_candidates ( ) {
1115
+ Ok ( candidates) if !candidates. is_empty ( ) => candidates,
1116
+ // fallback to default profile candidates
1117
+ _ => default_profile_candidates ( ) ,
1118
+ }
1119
+ }
1120
+
1121
+ fn get_workspace_profile_candidates ( ) -> CargoResult < Vec < clap_complete:: CompletionCandidate > > {
1122
+ let gctx = new_gctx_for_completions ( ) ?;
1123
+ let ws = Workspace :: new ( & find_root_manifest_for_wd ( gctx. cwd ( ) ) ?, & gctx) ?;
1124
+ let profiles = Profiles :: new ( & ws, InternedString :: new ( "dev" ) ) ?;
1125
+
1126
+ let mut candidates = Vec :: new ( ) ;
1127
+ for name in profiles. profile_names ( ) {
1128
+ let Ok ( profile_instance) = Profiles :: new ( & ws, name) else {
1129
+ continue ;
1130
+ } ;
1131
+ let base_profile = profile_instance. base_profile ( ) ;
1132
+
1133
+ let mut description = String :: from ( if base_profile. opt_level . as_str ( ) == "0" {
1134
+ "unoptimized"
1135
+ } else {
1136
+ "optimized"
1137
+ } ) ;
1138
+
1139
+ if base_profile. debuginfo . is_turned_on ( ) {
1140
+ description. push_str ( " + debuginfo" ) ;
1141
+ }
1142
+
1143
+ candidates
1144
+ . push ( clap_complete:: CompletionCandidate :: new ( & name) . help ( Some ( description. into ( ) ) ) ) ;
1145
+ }
1146
+
1147
+ Ok ( candidates)
1148
+ }
1149
+
1150
+ fn default_profile_candidates ( ) -> Vec < clap_complete:: CompletionCandidate > {
1151
+ vec ! [
1152
+ clap_complete:: CompletionCandidate :: new( "dev" ) . help( Some ( "unoptimized + debuginfo" . into( ) ) ) ,
1153
+ clap_complete:: CompletionCandidate :: new( "release" ) . help( Some ( "optimized" . into( ) ) ) ,
1154
+ clap_complete:: CompletionCandidate :: new( "test" )
1155
+ . help( Some ( "unoptimized + debuginfo" . into( ) ) ) ,
1156
+ clap_complete:: CompletionCandidate :: new( "bench" ) . help( Some ( "optimized" . into( ) ) ) ,
1157
+ ]
1158
+ }
1159
+
1109
1160
fn get_example_candidates ( ) -> Vec < clap_complete:: CompletionCandidate > {
1110
1161
get_targets_from_metadata ( )
1111
1162
. unwrap_or_default ( )
0 commit comments