ironflow-core 2.7.0

Rust workflow engine with Claude Code native agent support
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 = "2024"
rust-version = "1.94"
name = "ironflow-core"
version = "2.7.0"
authors = ["Thomas Tartrau"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust workflow engine with Claude Code native agent support"
readme = false
keywords = [
    "workflow",
    "agent",
    "claude",
    "shell",
    "automation",
]
categories = [
    "asynchronous",
    "development-tools",
]
license = "MIT"
repository = "https://gitlab.com/ThomasTartrau/ironflow"
resolver = "2"

[features]
default = []
prometheus = ["metrics"]
transport-docker = ["bollard"]
transport-k8s = [
    "kube",
    "k8s-openapi",
    "tokio-util",
]
transport-ssh = ["russh"]

[lib]
name = "ironflow_core"
path = "src/lib.rs"

[[example]]
name = "changelog"
path = "examples/changelog.rs"

[[example]]
name = "code_review"
path = "examples/code_review.rs"

[[example]]
name = "health_check"
path = "examples/health_check.rs"

[[example]]
name = "incident_report"
path = "examples/incident_report.rs"

[[example]]
name = "security_audit"
path = "examples/security_audit.rs"

[[test]]
name = "e2e"
path = "tests/e2e/main.rs"

[dependencies.bollard]
version = "0.20"
optional = true

[dependencies.futures-util]
version = "0.3"

[dependencies.k8s-openapi]
version = "0.27"
features = ["latest"]
optional = true

[dependencies.kube]
version = "3.1"
features = [
    "client",
    "runtime",
    "ws",
    "rustls-tls",
    "aws-lc-rs",
]
optional = true
default-features = false

[dependencies.metrics]
version = "0.24"
optional = true

[dependencies.reqwest]
version = "0.13"
features = ["json"]

[dependencies.russh]
version = "0.58"
optional = true

[dependencies.schemars]
version = "1"

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

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "process",
    "time",
    "macros",
    "rt-multi-thread",
    "signal",
]

[dependencies.tokio-util]
version = "0.7"
features = ["io"]
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.url]
version = "2"

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

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "json",
    "env-filter",
]