[package]
edition = "2021"
name = "af-workflow"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spec-driven workflow chassis: typed node expressions composed into a branched DAG. Port of agent_core/workflow."
homepage = "https://github.com/JingYeoh/agent-factory"
readme = "README.md"
keywords = [
"agent",
"llm",
"workflow",
"durable",
"platform",
]
categories = [
"asynchronous",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JingYeoh/agent-factory"
[lib]
name = "af_workflow"
path = "src/lib.rs"
[[test]]
name = "hello_world_run"
path = "tests/hello_world_run.rs"
[[test]]
name = "runtime_coverage"
path = "tests/runtime_coverage.rs"
[[test]]
name = "runtime_services"
path = "tests/runtime_services.rs"
[[test]]
name = "spec_roundtrip"
path = "tests/spec_roundtrip.rs"
[dependencies.af-context]
version = "=0.4.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10.4"
[dependencies.cron]
version = "0.12"
[dependencies.futures]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
"sync",
"time",
"rt",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"serde",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
"rt",
"macros",
"time",
"test-util",
]