[package]
edition = "2021"
name = "tirea-agent-loop"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core agent execution loop and runtime for tirea"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/tirea-ai/tirea"
[lib]
name = "tirea_agent_loop"
path = "src/lib.rs"
[[example]]
name = "live_deepseek"
path = "examples/live_deepseek.rs"
[[example]]
name = "live_deepseek_skills"
path = "examples/live_deepseek_skills.rs"
[[test]]
name = "otel_telemetry"
path = "tests/otel_telemetry.rs"
[[test]]
name = "phoenix_observability_e2e"
path = "tests/phoenix_observability_e2e.rs"
[[test]]
name = "skills_integration"
path = "tests/skills_integration.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.genai]
version = "0.5"
[dependencies.json-patch]
version = "3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tirea-contract]
version = "0.1.1"
[dependencies.tirea-state]
version = "0.1.0"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"time",
"process",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v7",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.opentelemetry]
version = "0.28"
[dev-dependencies.opentelemetry-otlp]
version = "0.28"
features = [
"http-proto",
"reqwest-blocking-client",
"trace",
]
default-features = false
[dev-dependencies.opentelemetry_sdk]
version = "0.28"
features = [
"rt-tokio",
"testing",
]
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tirea-contract]
version = "0.1.1"
features = ["test-support"]
[dev-dependencies.tirea-extension-interaction]
version = "0.1.0"
[dev-dependencies.tirea-extension-observability]
version = "0.1.0"
[dev-dependencies.tirea-extension-skills]
version = "0.1.0"
[dev-dependencies.tirea-state]
version = "0.1.0"
features = ["derive"]
[dev-dependencies.tirea-store-adapters]
version = "0.1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"fs",
]
[dev-dependencies.tracing-opentelemetry]
version = "0.29"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"registry",
]
[dev-dependencies.trybuild]
version = "1"
[lints.clippy]
all = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"