@@ -844,7 +844,6 @@ unstable_cli_options!(
844844    avoid_dev_deps:  bool  = ( "Avoid installing dev-dependencies if possible" ) , 
845845    binary_dep_depinfo:  bool  = ( "Track changes to dependency artifacts" ) , 
846846    bindeps:  bool  = ( "Allow Cargo packages to depend on bin, cdylib, and staticlib crates, and use the artifacts built by those crates" ) , 
847-     build_dir:  bool  = ( "Enable the `build.build-dir` option in .cargo/config.toml file" ) , 
848847    #[ serde( deserialize_with = "deserialize_comma_separated_list" ) ] 
849848    build_std:  Option <Vec <String >>  = ( "Enable Cargo to compile the standard library itself as part of a crate graph compilation" ) , 
850849    #[ serde( deserialize_with = "deserialize_comma_separated_list" ) ] 
@@ -1360,7 +1359,6 @@ impl CliUnstable {
13601359            "avoid-dev-deps"  => self . avoid_dev_deps  = parse_empty ( k,  v) ?, 
13611360            "binary-dep-depinfo"  => self . binary_dep_depinfo  = parse_empty ( k,  v) ?, 
13621361            "bindeps"  => self . bindeps  = parse_empty ( k,  v) ?, 
1363-             "build-dir"  => self . build_dir  = parse_empty ( k,  v) ?, 
13641362            "build-std"  => self . build_std  = Some ( parse_list ( v) ) , 
13651363            "build-std-features"  => self . build_std_features  = Some ( parse_list ( v) ) , 
13661364            "cargo-lints"  => self . cargo_lints  = parse_empty ( k,  v) ?, 
0 commit comments