[package]
edition = "2021"
rust-version = "1.74"
name = "tool-result-cache"
version = "0.1.0"
authors = ["Mukunda Rao Katta <mukunda.vjcs6@gmail.com>"]
build = false
exclude = [
".github/*",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Content-addressable LRU cache for LLM agent tool calls. Same tool, same args -> same answer, returned from memory. Optional TTL, content-addressable on (tool_name, args) with canonical-JSON keys."
homepage = "https://github.com/MukundaKatta/tool-result-cache-rs"
documentation = "https://docs.rs/tool-result-cache"
readme = "README.md"
keywords = [
"llm",
"agents",
"cache",
"lru",
"memoize",
]
categories = ["caching"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/tool-result-cache-rs"
[lib]
name = "tool_result_cache"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.serde_json]
version = "1"
[dev-dependencies.serde_json]
version = "1"