Skip to content

Commit 2c40858

Browse files
Make incremental compilation the default for all profiles.
1 parent 87dd6c2 commit 2c40858

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/cargo/core/profiles.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ impl Default for Profile {
406406
debug_assertions: false,
407407
overflow_checks: false,
408408
rpath: false,
409-
incremental: false,
409+
incremental: true,
410410
panic: None,
411411
}
412412
}
@@ -467,7 +467,6 @@ impl Profile {
467467
debuginfo: Some(2),
468468
debug_assertions: true,
469469
overflow_checks: true,
470-
incremental: true,
471470
..Profile::default()
472471
}
473472
}

0 commit comments

Comments
 (0)