From 5d834c96c1b877c9ad3c4ff6a328ffecf8b0e6b7 Mon Sep 17 00:00:00 2001 From: clabby Date: Mon, 12 Feb 2024 21:40:12 -0500 Subject: [PATCH] make streams public --- crates/mipsevm/src/mips/instrumented.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.