ironflow-engine 2.23.2

Workflow orchestration engine for ironflow with FSM-based run lifecycle
Documentation
[package]
name = "ironflow-engine"
version = "2.23.2"
edition = "2024"
rust-version = "1.94"
authors = ["Thomas Tartrau"]
license = "MIT"
description = "Workflow orchestration engine for ironflow with FSM-based run lifecycle"
repository = "https://gitlab.com/ThomasTartrau/ironflow"
keywords = ["workflow", "engine", "orchestration", "fsm"]
categories = ["asynchronous", "development-tools"]

[dependencies]
ironflow-artifacts = { version = "0.1.1", path = "../ironflow-artifacts" }
ironflow-core = { version = "3.7.0", path = "../ironflow-core" }
ironflow-store = { version = "2.21.1", path = "../ironflow-store" }

uuid = { version = "1", features = ["v7", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rust_decimal = { version = "1", features = ["serde-float"] }
tokio = { version = "1", features = ["time", "sync", "process", "io-util", "fs"] }
bytes = "1"
futures-util = { version = "0.3", default-features = false, features = ["std"] }
glob = "0.3"
strum = { version = "0.27", features = ["derive"] }
thiserror = "2"
tracing = "0.1"
reqwest = { version = "0.12", features = ["json"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
schemars = "1"
croner = { version = "3", features = ["serde"] }
rand = "0.9"
metrics = { version = "0.24", optional = true }
utoipa = { version = "5", features = ["uuid", "chrono", "decimal_float"], optional = true }

[features]
default = []
prometheus = ["metrics", "ironflow-core/prometheus"]
opentelemetry = ["ironflow-core/opentelemetry"]
openapi = ["utoipa", "ironflow-store/openapi"]

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
serde_json = "1"
tempfile = "3"
axum = { version = "0.8", features = ["json"] }
metrics = "0.24"
metrics-exporter-prometheus = { version = "0.18", default-features = false }