[package]
name = "tiny-agent"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "一个小而完整的 Rust LLM Agent 运行时:可中断、可恢复、可观测、可插拔的 agent loop / A small but complete LLM agent runtime in Rust — an interruptible, resumable, observable, pluggable agent loop."
license = "MIT OR Apache-2.0"
repository = "https://github.com/konodioda727/tiny-agent"
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"]
exclude = ["/.github", "/.agent_storage"]
[lib]
name = "tiny_agent"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
async-trait = "0.1"
uuid = { version = "1.0", features = ["v4"] }
futures-util = "0.3"
async-stream = "0.3"
tokio-util = "0.7.18"
schemars = "0.8"
thiserror = "2"