tower-cache 0.0.1

Caching layer for Tower
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "tower-cache"
description = "Caching layer for Tower"
version = "0.0.1"
edition = "2021"
authors = ["nicolas.moutschen@gmail.com"]
license = "MIT"
repository = "https://github.com/nmoutschen/tower-cache"

[dependencies]
lru = { version = "0.7", optional = true }
tower = { version = "0.4", features = ["util"] }

[dev-dependencies]
tokio = { version = "1", features = ["full"] }

[features]
default = ["lru"]