@@ -887,7 +887,6 @@ unstable_cli_options!(
887887 gitoxide: Option <GitoxideFeatures > = ( "Use gitoxide for the given git interactions, or all of them if no argument is given" ) ,
888888 host_config: bool = ( "Enable the `[host]` section in the .cargo/config.toml file" ) ,
889889 json_target_spec: bool = ( "Enable `.json` target spec files" ) ,
890- lockfile_path: bool = ( "Enable the `resolver.lockfile-path` config option" ) ,
891890 minimal_versions: bool = ( "Resolve minimal dependency versions instead of maximum" ) ,
892891 msrv_policy: bool = ( "Enable rust-version aware policy within cargo" ) ,
893892 mtime_on_use: bool = ( "Configure Cargo to update the mtime of used files" ) ,
@@ -1001,6 +1000,8 @@ const STABILIZED_BUILD_DIR: &str = "build.build-dir is now always enabled.";
10011000
10021001const STABILIZED_CONFIG_INCLUDE : & str = "The `include` config key is now always available" ;
10031002
1003+ const STABILIZED_LOCKFILE_PATH : & str = "The `lockfile-path` config key is now always available" ;
1004+
10041005fn deserialize_comma_separated_list < ' de , D > (
10051006 deserializer : D ,
10061007) -> Result < Option < Vec < String > > , D :: Error >
@@ -1389,6 +1390,7 @@ impl CliUnstable {
13891390 "package-workspace" => stabilized_warn ( k, "1.89" , STABILIZED_PACKAGE_WORKSPACE ) ,
13901391 "build-dir" => stabilized_warn ( k, "1.91" , STABILIZED_BUILD_DIR ) ,
13911392 "config-include" => stabilized_warn ( k, "1.93" , STABILIZED_CONFIG_INCLUDE ) ,
1393+ "lockfile-path" => stabilized_warn ( k, "1.95" , STABILIZED_LOCKFILE_PATH ) ,
13921394
13931395 // Unstable features
13941396 // Sorted alphabetically:
@@ -1427,7 +1429,6 @@ impl CliUnstable {
14271429 }
14281430 "host-config" => self . host_config = parse_empty ( k, v) ?,
14291431 "json-target-spec" => self . json_target_spec = parse_empty ( k, v) ?,
1430- "lockfile-path" => self . lockfile_path = parse_empty ( k, v) ?,
14311432 "next-lockfile-bump" => self . next_lockfile_bump = parse_empty ( k, v) ?,
14321433 "minimal-versions" => self . minimal_versions = parse_empty ( k, v) ?,
14331434 "msrv-policy" => self . msrv_policy = parse_empty ( k, v) ?,
0 commit comments