You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[error("Failed to (de)serialize data using json")]
1582
+
SerdeJson(#[from] serde_json::Error),
1577
1583
}
1578
1584
1579
1585
#[derive(Clone,Debug,Eq,PartialEq)]
@@ -5708,25 +5714,29 @@ mod tests {
5708
5714
};
5709
5715
let runner = crate::cairo_run::cairo_run(program_content,&config,&mutcrate::hint_processor::builtin_hint_processor::builtin_hint_processor_definition::BuiltinHintProcessor::new_empty()).unwrap();
5710
5716
let prover_input_info = runner.get_prover_input_info().unwrap();
5711
-
let serialized_prover_input_info = prover_input_info.serialize_json().unwrap();
5712
-
let deserialized_prover_input_info:ProverInputInfo =
0 commit comments