[package]
edition = "2021"
name = "runkon-flow"
version = "0.6.1-alpha"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable workflow execution engine — DSL, traits, and in-memory reference implementations"
readme = "README.md"
keywords = [
"workflow",
"engine",
"dsl",
"automation",
"agent",
]
categories = [
"development-tools",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/runkon/runkon"
[features]
diagnostics = [
"dep:tracing-subscriber",
"dep:tracing-appender",
]
sqlite = ["dep:rusqlite"]
test-utils = []
utoipa = ["dep:utoipa"]
[lib]
name = "runkon_flow"
path = "src/lib.rs"
[[example]]
name = "always_approve_gate"
path = "examples/always_approve_gate.rs"
[[example]]
name = "echo_executor"
path = "examples/echo_executor.rs"
[[example]]
name = "fixed_env_provider"
path = "examples/fixed_env_provider.rs"
[[example]]
name = "full_engine_minimal"
path = "examples/full_engine_minimal.rs"
required-features = ["test-utils"]
[[example]]
name = "logging_child_runner"
path = "examples/logging_child_runner.rs"
[[example]]
name = "static_items_provider"
path = "examples/static_items_provider.rs"
[[example]]
name = "static_workflow_resolver"
path = "examples/static_workflow_resolver.rs"
[[example]]
name = "stdout_event_sink"
path = "examples/stdout_event_sink.rs"
[[test]]
name = "basic_flow"
path = "tests/basic_flow.rs"
required-features = ["test-utils"]
[[test]]
name = "control_flow"
path = "tests/control_flow.rs"
required-features = ["test-utils"]
[[test]]
name = "cross_harness_composition"
path = "tests/cross_harness_composition.rs"
required-features = ["test-utils"]
[[test]]
name = "engine_core"
path = "tests/engine_core.rs"
required-features = ["test-utils"]
[[test]]
name = "foreach"
path = "tests/foreach.rs"
required-features = ["test-utils"]
[[test]]
name = "gates_and_errors"
path = "tests/gates_and_errors.rs"
required-features = ["test-utils"]
[[test]]
name = "lease_refresh"
path = "tests/lease_refresh.rs"
required-features = ["test-utils"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.threadpool]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
optional = true
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true
[dependencies.ulid]
version = "1"
[dependencies.utoipa]
version = "5"
optional = true
[dependencies.wait-timeout]
version = "0.2"