temporal-agent-rs 0.1.0

Durable AI agent execution on Temporal using AutoAgents traits.
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.95"
name = "temporal-agent-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Durable AI agent execution on Temporal using AutoAgents traits."
homepage = "https://github.com/triplecloudtech/temporal-agent-rs"
documentation = "https://docs.rs/temporal-agent-rs"
readme = "README.md"
keywords = [
    "temporal",
    "ai",
    "agents",
    "llm",
    "workflow",
]
categories = [
    "asynchronous",
    "api-bindings",
]
license = "MIT"
repository = "https://github.com/triplecloudtech/temporal-agent-rs"

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

[[example]]
name = "interactive_math_agent"
path = "examples/interactive_math_agent/main.rs"

[[example]]
name = "simple_math_agent"
path = "examples/simple_math_agent/main.rs"

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

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.autoagents]
version = "0.3.7"

[dependencies.autoagents-core]
version = "0.3.7"

[dependencies.autoagents-llm]
version = "0.3.7"

[dependencies.futures]
version = "0.3"

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

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

[dependencies.serde_json]
version = "1"

[dependencies.temporalio-client]
version = "0.4"

[dependencies.temporalio-common]
version = "0.4"

[dependencies.temporalio-macros]
version = "0.4"

[dependencies.temporalio-sdk]
version = "0.4"

[dependencies.temporalio-sdk-core]
version = "0.4"

[dependencies.thiserror]
version = "2"

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

[dependencies.tracing]
version = "0.1"

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

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

[dev-dependencies.autoagents-derive]
version = "0.3.7"

[dev-dependencies.autoagents-llm]
version = "0.3.7"
features = [
    "openai",
    "ollama",
]

[dev-dependencies.testcontainers]
version = "0.27"
features = ["http_wait"]

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

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

[dev-dependencies.url]
version = "2"

[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "forbid"