diff --git a/crates/driver/src/core.rs b/crates/driver/src/core.rs index e3069a02f..9340fac88 100644 --- a/crates/driver/src/core.rs +++ b/crates/driver/src/core.rs @@ -34,11 +34,11 @@ where /// Marker for the pipeline. _marker2: core::marker::PhantomData

, /// A pipeline abstraction. - pipeline: DP, + pub pipeline: DP, /// Cursor to keep track of the L2 tip - cursor: PipelineCursor, + pub cursor: PipelineCursor, /// Executor constructor. - executor: EC, + pub executor: EC, } impl Driver