@@ -741,6 +741,7 @@ unstable_cli_options!(
741
741
minimal_versions: bool = ( "Resolve minimal dependency versions instead of maximum" ) ,
742
742
msrv_policy: bool = ( "Enable rust-version aware policy within cargo" ) ,
743
743
mtime_on_use: bool = ( "Configure Cargo to update the mtime of used files" ) ,
744
+ next_lockfile_bump: bool = ( HIDDEN ) ,
744
745
no_index_update: bool = ( "Do not update the registry index even if the cache is outdated" ) ,
745
746
panic_abort_tests: bool = ( "Enable support to run tests with -Cpanic=abort" ) ,
746
747
profile_rustflags: bool = ( "Enable the `rustflags` option in profiles in .cargo/config.toml file" ) ,
@@ -1110,6 +1111,7 @@ impl CliUnstable {
1110
1111
"host-config" => self . host_config = parse_empty ( k, v) ?,
1111
1112
"jobserver-per-rustc" => self . jobserver_per_rustc = parse_empty ( k, v) ?,
1112
1113
"lints" => self . lints = parse_empty ( k, v) ?,
1114
+ "next-lockfile-bump" => self . next_lockfile_bump = parse_empty ( k, v) ?,
1113
1115
"minimal-versions" => self . minimal_versions = parse_empty ( k, v) ?,
1114
1116
"msrv-policy" => self . msrv_policy = parse_empty ( k, v) ?,
1115
1117
// can also be set in .cargo/config or with and ENV
0 commit comments