use thiserror::Error; pub type Result = core::result::Result; #[derive(Error, Debug)] pub enum Error { #[error("risc0 failed to serde")] Risc0Serde(#[from] risc0_zkvm::serde::Error), }