sandl 0.1.0

A framework for building parallel execution engines with dependency management, type-safe method dispatch, and event observation.
Documentation
pub mod builder;
pub mod config;
pub mod context;
pub mod engine;
pub mod error;
pub mod events;
pub mod layer;
pub mod results;
pub mod slice;
pub mod tracker;
pub mod traits;
pub mod value;

pub use builder::*;
pub use config::*;
pub use context::*;
pub use engine::*;
pub use error::*;
pub use events::*;
pub use layer::*;
pub use results::*;
pub use sandl_derive::*;
pub use slice::*;
pub use traits::*;
pub use value::*;

#[macro_use]
pub mod macros;