[package]
edition = "2024"
rust-version = "1.85"
name = "kash_macros"
version = "0.7.1"
authors = [
"Omid Rad <omidmr@gmail.com>",
"James Kominick <james@kominick.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Function and method cache and memoization"
documentation = "https://docs.rs/kash"
readme = "README.md"
keywords = [
"cache",
"caching",
"memoize",
"redis",
"disk",
]
categories = [
"caching",
"data-structures",
]
license = "MIT"
repository = "https://github.com/omid/kash"
[features]
disk_store = []
redis_store = []
[lib]
name = "kash_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.darling]
version = "0.21"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"