[package]
edition = "2021"
rust-version = "1.74"
name = "embed-key"
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 = "Deterministic cache key for an embedding request: hash text + mix in provider, model, and dimensionality. So a cache survives model upgrades without false hits. Zero deps."
homepage = "https://github.com/MukundaKatta/embed-key"
documentation = "https://docs.rs/embed-key"
readme = "README.md"
keywords = [
"embedding",
"cache-key",
"hash",
"rag",
"deterministic",
]
categories = [
"caching",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/embed-key"
[lib]
name = "embed_key"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"