[package]
edition = "2024"
rust-version = "1.85"
name = "tiny-agent"
version = "0.2.0"
build = false
exclude = [
"/.github",
"/.agent_storage",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "一个小而完整的 Rust LLM Agent 运行时:可中断、可恢复、可观测、可插拔的 agent loop / A small but complete LLM agent runtime in Rust — an interruptible, resumable, observable, pluggable agent loop."
homepage = "https://github.com/konodioda727/tiny-agent"
documentation = "https://docs.rs/tiny-agent"
readme = "README.md"
keywords = [
"agent",
"llm",
"ai",
"anthropic",
"openai",
]
categories = [
"asynchronous",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/konodioda727/tiny-agent"
[lib]
name = "tiny_agent"
path = "src/lib.rs"
[[bin]]
name = "tiny-agent"
path = "src/main.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7.18"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.0"
features = ["v4"]