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), #[error("risc0 failed to prove execution of the zkvm")] Risc0ProofFailed, }