[package]
edition = "2021"
rust-version = "1.74"
name = "prompt-cache-key"
version = "0.1.0"
authors = ["Mukunda Rao Katta <mukunda.vjcs6@gmail.com>"]
build = false
exclude = ["target/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stable Anthropic prompt-cache scope hashes. Given (system, tools, model), produce a deterministic key that survives benign reordering."
homepage = "https://github.com/MukundaKatta/prompt-cache-key-rs"
documentation = "https://docs.rs/prompt-cache-key"
readme = "README.md"
keywords = [
"llm",
"anthropic",
"cache",
"ai",
"hash",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/MukundaKatta/prompt-cache-key-rs"
[lib]
name = "prompt_cache_key"
path = "src/lib.rs"
[[test]]
name = "key"
path = "tests/key.rs"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dev-dependencies]