deltaflow 0.5.0

The embeddable workflow engine. Type-safe, Elixir-inspired pipelines.
Documentation
[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.futures]
version = "0.3"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
features = ["runtime-tokio", "sqlite"]
optional = true
version = "0.8"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
features = ["time"]
version = "1"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros", "signal"]
version = "1"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "visualizer_complex"
path = "examples/visualizer_complex.rs"

[[example]]
name = "visualizer_demo"
path = "examples/visualizer_demo.rs"

[features]
default = []
sqlite = ["dep:sqlx"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency"]
description = "The embeddable workflow engine. Type-safe, Elixir-inspired pipelines."
documentation = "https://docs.rs/deltaflow"
edition = "2021"
keywords = ["workflow", "pipeline", "async", "jobs", "tasks"]
license = "MIT"
name = "deltaflow"
readme = "README.md"
repository = "https://github.com/mavdi/deltaflow"
version = "0.5.0"

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

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

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

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

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

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

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

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

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

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

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