dag-executor 0.1.0

A production-ready DAG executor with state management and advanced patterns
Documentation
1
2
3
4
5
6
7
8
9
10
//! Error types used throughout the crate.
//!
//! Every layer has a dedicated error enum ([`TaskError`], [`StorageError`],
//! [`ValidationError`]) which all flatten into the top-level
//! [`DagExecutorError`]. Source chains are preserved via `#[from]` so callers
//! can use `?` freely and still inspect root causes.

mod types;

pub use types::{DagExecutorError, Result, StorageError, TaskError, ValidationError};