[package]
edition = "2024"
rust-version = "1.91"
name = "agent-sdk-tools"
version = "0.9.2"
authors = ["Bipa <engineering@bipa.app>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tool traits, registry, hooks, and store contracts for the Agent SDK"
homepage = "https://github.com/bipa-app/agent-sdk"
readme = false
keywords = [
"agent",
"llm",
"ai",
"tools",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/bipa-app/agent-sdk"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "agent_sdk_tools"
path = "src/lib.rs"
[dependencies.agent-sdk-foundation]
version = "0.9.2"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.log]
version = "0.4"
features = ["kv_std"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"serde",
"std",
"formatting",
"parsing",
]
[dependencies.tokio]
version = "1.52.0"
features = [
"sync",
"fs",
"process",
"time",
"macros",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
[dev-dependencies.tokio]
version = "1.52.0"
features = [
"sync",
"fs",
"process",
"time",
"macros",
"rt-multi-thread",
"macros",
]
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(loom)",
"cfg(docsrs)",
]