agentic-workflow 0.1.0

Universal orchestration engine — workflows, pipelines, state machines, batch processing, and every coordination pattern
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "agentic-workflow"
version = "0.1.0"
authors = ["Agentra Labs <contact@agentralabs.tech>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal orchestration engine — workflows, pipelines, state machines, batch processing, and every coordination pattern"
homepage = "https://agentralabs.tech"
readme = false
keywords = [
    "workflow",
    "orchestration",
    "dag",
    "pipeline",
    "mcp",
]
categories = [
    "development-tools",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/agentralabs/agentic-workflow"

[features]
default = [
    "format",
    "schedule",
]
ffi = ["format"]
format = [
    "lz4_flex",
    "memmap2",
]
schedule = ["cron"]

[lib]
name = "agentic_workflow"
crate-type = [
    "lib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.blake3]
version = "1.5"

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

[dependencies.cron]
version = "0.12"
optional = true

[dependencies.lz4_flex]
version = "0.11"
optional = true

[dependencies.memmap2]
version = "0.9"
optional = true

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.35"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1.6"
features = ["v4"]

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"