[dependencies.async-trait]
version = "0.1"
[dependencies.eventsource-stream]
version = "0.2"
[dependencies.futures]
version = "0.3"
[dependencies.llm-worker-macros]
version = "0.2"
[dependencies.reqwest]
default-features = false
features = ["stream", "json", "native-tls", "http2"]
version = "0.13.1"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.49"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.clap]
features = ["derive", "env"]
version = "4.5"
[dev-dependencies.dotenv]
version = "0.15"
[dev-dependencies.schemars]
version = "1.2"
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[[example]]
name = "record_test_fixtures"
path = "examples/record_test_fixtures/main.rs"
[[example]]
name = "worker_cancel_demo"
path = "examples/worker_cancel_demo.rs"
[[example]]
name = "worker_cli"
path = "examples/worker_cli.rs"
[lib]
name = "llm_worker"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A library for building autonomous LLM-powered systems"
edition = "2024"
license = "MIT"
name = "llm-worker"
publish = true
readme = false
repository = "https://gitea.hareworks.net/Hare/llm_worker_rs"
resolver = "2"
version = "0.2.1"
[[test]]
name = "anthropic_fixtures"
path = "tests/anthropic_fixtures.rs"
[[test]]
name = "gemini_fixtures"
path = "tests/gemini_fixtures.rs"
[[test]]
name = "ollama_fixtures"
path = "tests/ollama_fixtures.rs"
[[test]]
name = "openai_fixtures"
path = "tests/openai_fixtures.rs"
[[test]]
name = "parallel_execution_test"
path = "tests/parallel_execution_test.rs"
[[test]]
name = "subscriber_test"
path = "tests/subscriber_test.rs"
[[test]]
name = "tool_macro_test"
path = "tests/tool_macro_test.rs"
[[test]]
name = "validation_test"
path = "tests/validation_test.rs"
[[test]]
name = "worker_fixtures"
path = "tests/worker_fixtures.rs"
[[test]]
name = "worker_state_test"
path = "tests/worker_state_test.rs"