[package]
edition = "2021"
name = "af-agent"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stable Agent model, tool, inbox, and trusted-plugin contracts."
homepage = "https://github.com/JingYeoh/agent-factory"
readme = "README.md"
keywords = [
"agent",
"llm",
"workflow",
"durable",
"platform",
]
categories = [
"asynchronous",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JingYeoh/agent-factory"
[lib]
name = "af_agent"
path = "src/lib.rs"
[[test]]
name = "tool_model_coverage"
path = "tests/tool_model_coverage.rs"
[dependencies.af-agent-session]
version = "=0.3.0"
[dependencies.af-context]
version = "=0.3.0"
[dependencies.af-llm]
version = "=0.3.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.jsonschema]
version = "=0.52.1"
default-features = false
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
"sync",
"macros",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
"rt",
"macros",
]