[package]
edition = "2021"
name = "af-workflow"
version = "0.2.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/v2."
readme = false
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.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.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"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
"rt",
"macros",
"time",
"test-util",
]