[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-tools"
version = "0.2.9"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tool registry and execution: ToolRegistry, SerialToolExecutor, ParallelToolExecutor"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_tools"
path = "src/lib.rs"
[[test]]
name = "handle_error"
path = "tests/handle_error.rs"
[[test]]
name = "parallel_executor"
path = "tests/parallel_executor.rs"
[[test]]
name = "registry_advanced"
path = "tests/registry_advanced.rs"
[[test]]
name = "return_direct"
path = "tests/return_direct.rs"
[[test]]
name = "serial_executor"
path = "tests/serial_executor.rs"
[[test]]
name = "tool_definition"
path = "tests/tool_definition.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.meval]
version = "0.2"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
"query",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dependencies.urlencoding]
version = "2"
[dev-dependencies.synaptic-macros]
version = "0.2"