sandl 0.1.0

A framework for building parallel execution engines with dependency management, type-safe method dispatch, and event observation.
Documentation
[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.10"

[dependencies.sandl_derive]
version = "0.1.0"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.228"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "2"

[features]
default = []
json = ["serde_json", "serde"]

[lib]
name = "sandl"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "data-structures", "simulation"]
description = "A framework for building parallel execution engines with dependency management, type-safe method dispatch, and event observation."
edition = "2024"
keywords = ["parallel", "execution", "dependency", "framework", "rayon"]
license = "MIT OR Apache-2.0"
name = "sandl"
readme = "README.md"
repository = "https://github.com/PedroGaya/sandl"
resolver = "2"
version = "0.1.0"

[[test]]
name = "args"
path = "tests/args.rs"

[[test]]
name = "context"
path = "tests/context.rs"

[[test]]
name = "engine"
path = "tests/engine.rs"

[[test]]
name = "error"
path = "tests/error.rs"

[[test]]
name = "observer"
path = "tests/observer.rs"

[[test]]
name = "value"
path = "tests/value.rs"