kona-derive 0.4.5

A no_std derivation pipeline implementation for the OP Stack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Error types for the kona derivation pipeline.
//!
//! This module contains comprehensive error types for the derivation pipeline, organized
//! by severity and category. The error system provides detailed context for debugging
//! and enables sophisticated error handling and recovery strategies.

mod attributes;
pub use attributes::BuilderError;

mod stages;
pub use stages::BatchDecompressionError;

mod pipeline;
pub use pipeline::{PipelineEncodingError, PipelineError, PipelineErrorKind, ResetError};

mod sources;
pub use sources::{BlobDecodingError, BlobProviderError};