diff --git a/crates/mipsevm/src/mips/instrumented.rs b/crates/mipsevm/src/mips/instrumented.rs index 4ebb99b..93becbc 100644 --- a/crates/mipsevm/src/mips/instrumented.rs +++ b/crates/mipsevm/src/mips/instrumented.rs @@ -16,10 +16,10 @@ pub struct InstrumentedState { pub state: State, /// The MIPS thread context's stdout buffer. /// TODO(clabby): Prob not the best place for this. - pub(crate) std_out: BufWriter, + pub std_out: BufWriter, /// The MIPS thread context's stderr buffer. /// TODO(clabby): Prob not the best place for this. - pub(crate) std_err: BufWriter, + pub std_err: BufWriter, /// The last address we accessed in memory. pub(crate) last_mem_access: Address, /// Whether or not the memory proof generation is enabled.