taquba-workflow 0.3.0

Durable, at-least-once workflow runtime on top of the Taquba task queue. Particularly well-suited for AI agent runs.
# 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.85"
name = "taquba-workflow"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Durable, at-least-once workflow runtime on top of the Taquba task queue. Particularly well-suited for AI agent runs."
homepage = "https://github.com/micllam/taquba"
readme = "README.md"
keywords = [
    "queue",
    "workflow",
    "agent",
    "durable",
    "taquba",
]
license = "Apache-2.0"
repository = "https://github.com/micllam/taquba"
resolver = "2"

[package.metadata.docs.rs]
all-features = true

[features]
default = []
webhooks = ["dep:taquba-webhooks"]

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

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

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

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

[dependencies.rmp-serde]
version = "1"

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

[dependencies.taquba]
version = "0.5.0"

[dependencies.taquba-webhooks]
version = "0.1.0"
optional = true

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
    "sync",
    "time",
]

[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
default-features = false

[dependencies.tracing]
version = "0.1"

[dependencies.ulid]
version = "1"

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.rig-core]
version = "0.36"

[dev-dependencies.serde_json]
version = "1"

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