File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,6 @@ pub struct BuildConfig {
48
48
pub future_incompat_report : bool ,
49
49
/// Which kinds of build timings to output (empty if none).
50
50
pub timing_outputs : Vec < TimingOutput > ,
51
- /// Use checksums rather than mtimes to determine if a crate is fresh.
52
- pub checksum_freshness : bool ,
53
51
}
54
52
55
53
fn default_parallelism ( ) -> CargoResult < u32 > {
@@ -122,7 +120,6 @@ impl BuildConfig {
122
120
export_dir : None ,
123
121
future_incompat_report : false ,
124
122
timing_outputs : Vec :: new ( ) ,
125
- checksum_freshness : false ,
126
123
} )
127
124
}
128
125
Original file line number Diff line number Diff line change @@ -759,7 +759,6 @@ Run `{cmd}` to see possible targets."
759
759
build_config. build_plan = self . flag ( "build-plan" ) ;
760
760
build_config. unit_graph = self . flag ( "unit-graph" ) ;
761
761
build_config. future_incompat_report = self . flag ( "future-incompat-report" ) ;
762
- build_config. checksum_freshness = self . flag ( "checksum-freshness" ) ;
763
762
764
763
if self . _contains ( "timings" ) {
765
764
for timing_output in self . _values_of ( "timings" ) {
@@ -794,10 +793,6 @@ Run `{cmd}` to see possible targets."
794
793
gctx. cli_unstable ( )
795
794
. fail_if_stable_opt ( "--unit-graph" , 8002 ) ?;
796
795
}
797
- if build_config. checksum_freshness {
798
- gctx. cli_unstable ( )
799
- . fail_if_stable_opt ( "--checksum-freshness" , 14136 ) ?;
800
- }
801
796
802
797
let opts = CompileOptions {
803
798
build_config,
You can’t perform that action at this time.
0 commit comments