when2task 0.3.1

high-performance library for executing async tasks with automatic dependency resolution and optimal parallelization.
Documentation
1
2
3
4
5
6
7
8
use crate::blueprint::BlueprintError;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum BuildError {
    #[error("Blueprint error: {0}")]
    BlueprintError(#[from] BlueprintError),
}