tower-resilience-cache 0.9.3

Response caching/memoization for Tower services
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.64.0"
name = "tower-resilience-cache"
version = "0.9.3"
authors = ["Josh Rotenberg <josh@rotenberg.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Response caching/memoization for Tower services"
readme = "README.md"
keywords = [
    "tower",
    "cache",
    "memoization",
    "resilience",
]
categories = [
    "asynchronous",
    "network-programming",
    "caching",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshrotenberg/tower-resilience"

[features]
default = []
metrics = [
    "dep:metrics",
    "tower-resilience-core/metrics",
]
tracing = [
    "dep:tracing",
    "tower-resilience-core/tracing",
]

[lib]
name = "tower_resilience_cache"
path = "src/lib.rs"

[[example]]
name = "cache_example"
path = "examples/cache_example.rs"

[dependencies.futures]
version = "0.3"

[dependencies.lru]
version = "0.16.2"

[dependencies.metrics]
version = "0.24"
optional = true

[dependencies.tokio]
version = "1.48.0"
features = [
    "time",
    "sync",
    "sync",
    "time",
]

[dependencies.tower]
version = "0.5"
features = ["util"]

[dependencies.tower-resilience-core]
version = "0.9.3"

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.tokio]
version = "1.48.0"
features = [
    "time",
    "sync",
    "full",
]

[dev-dependencies.tower]
version = "0.5"
features = [
    "util",
    "util",
]