[package]
edition = "2024"
rust-version = "1.88"
name = "saya-agent"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agentic LLM loop and OpenAI-compatible provider clients for SAYA CLI."
readme = false
license = "Apache-2.0"
repository = "https://github.com/databook-studio/saya-cli"
[lib]
name = "saya_agent"
path = "src/lib.rs"
[[test]]
name = "agent_loop"
path = "tests/agent_loop.rs"
[[test]]
name = "anthropic"
path = "tests/anthropic.rs"
[[test]]
name = "approval_policy"
path = "tests/approval_policy.rs"
[[test]]
name = "gemini"
path = "tests/gemini.rs"
[[test]]
name = "providers"
path = "tests/providers.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
[dependencies.futures-util]
version = "0.3"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"gzip",
"rustls-tls",
]
default-features = false
[dependencies.saya-types]
version = "0.2.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"sync",
"time",
"net",
"signal",
]