Implement a persistent compilation cache

This commit is contained in:
Omar Abdulla
2025-08-16 17:11:04 +03:00
parent 19075f76e0
commit c34f5a3d95
12 changed files with 415 additions and 275 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ use std::str::FromStr;
/// in its requirements, and then expanding it out into a list of [`Mode`]s.
///
/// Use [`ParsedMode::to_test_modes()`] to do this.
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize)]
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct Mode {
pub pipeline: ModePipeline,
pub optimize_setting: ModeOptimizerSetting,