funera-orchestrate 0.3.0

Easy-to-use orchestration layer for funera-core — build LLM agents with a simple builder API
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.88"
name = "funera-orchestrate"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Easy-to-use orchestration layer for funera-core — build LLM agents with a simple builder API"
homepage = "https://github.com/dynamder/funera"
documentation = "https://docs.rs/funera-orchestrate"
readme = false
license = "MIT"
repository = "https://github.com/dynamder/funera"

[features]
deepseek = ["funera-core/deepseek"]
default = [
    "deepseek",
    "tool",
]
funera-builtin-tools = [
    "dep:funera-builtin-tools",
    "funera-core/tool",
    "tool",
]
middleware = ["funera-core/middleware"]
openai = ["funera-core/openai"]
real-llm = []
sandbox = [
    "funera-core/sandbox",
    "funera-builtin-tools?/sandbox",
]
security = ["funera-core/security"]
skill = ["funera-core/skill"]
tool = ["funera-core/tool"]

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

[[example]]
name = "builtin_tools"
path = "examples/builtin_tools.rs"
required-features = ["funera-builtin-tools"]

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

[[example]]
name = "middleware"
path = "examples/middleware.rs"
required-features = ["middleware"]

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

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

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

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

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

[[example]]
name = "sandbox"
path = "examples/sandbox.rs"
required-features = [
    "sandbox",
    "funera-builtin-tools",
]

[[example]]
name = "security"
path = "examples/security.rs"
required-features = [
    "security",
    "funera-builtin-tools",
]

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

[[example]]
name = "skills"
path = "examples/skills.rs"
required-features = ["skill"]

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

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

[[example]]
name = "tool_policy"
path = "examples/tool_policy.rs"
required-features = ["security"]

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

[dependencies.anyhow]
version = "1.0.103"

[dependencies.async-openai]
version = "0.41.1"
features = [
    "_api",
    "chat-completion",
    "responses",
    "skill",
]

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

[dependencies.funera-builtin-tools]
version = "0.3.0"
optional = true

[dependencies.funera-core]
version = "0.3.0"

[dependencies.futures]
version = "0.3.32"

[dependencies.parking_lot]
version = "0.12.5"
features = ["serde"]

[dependencies.serde_json]
version = "1.0.150"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.52.3"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1.23.4"
features = [
    "serde",
    "v4",
]

[dev-dependencies.tokio]
version = "1.52.3"
features = [
    "full",
    "test-util",
]