[package]
edition = "2021"
rust-version = "1.74"
name = "alun-cache"
version = "0.1.0"
authors = ["alun contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Alun cache abstraction: local in-memory cache + Redis integration"
homepage = "https://github.com/wild1024/alun"
documentation = "https://docs.rs/alun-cache"
readme = "README.md"
keywords = [
"cache",
"redis",
"in-memory",
"web",
"framework",
]
categories = [
"caching",
"database",
"web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/wild1024/alun"
[lib]
name = "alun_cache"
path = "src/lib.rs"
[dependencies.alun-config]
version = "0.1.0"
[dependencies.alun-core]
version = "0.1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.redis]
version = "0.29"
features = [
"tokio-comp",
"connection-manager",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"full",
"rt",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]